質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
##実現したいこと
|
2
|
+
|
3
|
+
railsでQAサイトを作っています。
|
2
4
|
|
3
5
|
radioボタンでフォームが送信をできるようにしたいです
|
4
6
|
|
@@ -22,6 +24,8 @@
|
|
22
24
|
|
23
25
|
```
|
24
26
|
|
27
|
+
HTML変換後
|
28
|
+
|
25
29
|
```html
|
26
30
|
|
27
31
|
<input type="checkbox" name="question[tag_ids][]" id="question_tag_ids_" value="1" />
|
@@ -38,19 +42,15 @@
|
|
38
42
|
|
39
43
|
<%= radio_button "question", "tag_ids" ,t.id %>
|
40
44
|
|
41
|
-
<%= form.radio_button "tag_ids", t.id %>
|
42
|
-
|
43
45
|
<% end %>
|
44
46
|
|
45
47
|
```
|
46
48
|
|
47
|
-
|
49
|
+
html変換後
|
48
50
|
|
49
51
|
```html
|
50
52
|
|
51
53
|
両方とも結果は同じ
|
52
|
-
|
53
|
-
<input type="radio" value="1" name="question[tag_ids]" id="question_tag_ids_1">
|
54
54
|
|
55
55
|
<input type="radio" value="1" name="question[tag_ids]" id="question_tag_ids_1">
|
56
56
|
|
1
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
<% @tags.each do |t| %>
|
90
90
|
|
91
|
-
<%= radio_button "question[]", "tag_ids
|
91
|
+
<%= radio_button "question[]", "tag_ids" ,t.id %>
|
92
92
|
|
93
93
|
<% end %>
|
94
94
|
|