simple_form中的url有什么作用?

时间:2014-07-19 07:50:32

标签: ruby-on-rails simple-form

在simple_form bootstrap示例代码中,表单中有对 url:create_horizo​​ntal_examples_url 的引用。

这个网址是什么?

https://github.com/rafaelfranca/simple_form-bootstrap/blob/master/app/views/examples/_horizontal_form_sf.html.erb

<%= simple_form_for @user_horizontal, url: create_horizontal_examples_url, as:  'user_horizontal', html: { class: 'form-horizontal' },
  wrapper: :horizontal_form,
  wrapper_mappings: {
    check_boxes: :horizontal_radio_and_checkboxes,
    radio_buttons: :horizontal_radio_and_checkboxes,
    file: :horizontal_file_input,
    boolean: :horizontal_boolean
  } do |f| %>
  <%= f.error_notification %>

1 个答案:

答案 0 :(得分:1)

这是表单数据提交的网址。