我目前有:
radio_button_tag :item, value
但是我想要一个radio_button_tag,我在提交时传递了多个参数。
这样的事情:
radio_button_tag "item", "value", "item2", "value2"
答案 0 :(得分:0)
使用 $.ajax({
url: 'process.php',
type: 'POST',
data: {
html: $("html").html()
},
success: function (data) {
}
});
而不是单选按钮。单选按钮的重点是每个输入(组)只能同时激活一个按钮。
select
Rails有几个帮助器来创建选择和选项标签。 http://guides.rubyonrails.org/form_helpers.html#making-select-boxes-with-ease
答案 1 :(得分:0)
查看以下答案:Rails radio_button_tag how to send multiple parameters
从本质上讲,来回传递带有所需参数的数组,然后使用.split[]
方法在控制器中检索它们。