我的 show.html.erb 文件中有一个 button_to 标记。
<%= link_to 'Click HERE to open file', @user.image.url %><br/><br/><br/>
<%= label_tag(:q, "Parse CSV File:") %><br/>
<%= button_to 'Parse CSV', {:controller => "users_controller", :action => "process" } %>
<% end %>
然后我将它添加到我的 users_controller.rb 文件中
# GET /users/1/process
def process
puts 'To be Implemented'
end
我在路由文件中遇到错误
No route matches [POST] "/assets"
这是我的路由文件的外观:
resources :users
resources :listings
我应该改变什么。我有点困惑,非常感谢一些帮助。