form_for and scopes, rails 3

前端 未结 7 2079
执念已碎
执念已碎 2020-12-19 05:37

I have a problem due to scopes and the form_for helper in rails 3. The routes - file looks like this:

scope \"(/:tab)\" do
  resources :article
end
         


        
7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 06:17

    Try:

    <%= form_for [:tab, @article] do |f| %>
       <%= f.label :title %>
       <%= f.text_field :title %>
        etc.
    <%end%>
    

提交回复
热议问题