作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Simple_form 如何创建一个表单来发布到专业#create?
我试过这个:
<%= simple_form_for @course_group, :html =>
{ :method => 'post',
:action=> 'create',
:controller=>'specialities' }
<form accept-charset="UTF-8"
action="/course_groups"
class="simple_form course_group"
controller="specialities"
id="new_course_group"
method="post">
<form accept-charset="UTF-8"
action="/specialities"
class="simple_form course_group"
controller="specialities"
id="new_course_group"
method="post">
最佳答案
尝试使用 :url
选项,而不是包含 :action
& :controller
就在 html 哈希中。我会将您的示例重新编写为:
<%= simple_form_for @course_group,
:url => url_for(:action => 'create', :controller => 'specialities'),
:method => 'post' do |f| %>
form_for
引用
http://api.rubyonrails.org
关于ruby-on-rails - rails 3 : Using Simple_form how do I create a form that do a Post to specialities#create?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4855801/
我是一名优秀的程序员,十分优秀!