我在resources :users
中使用routes.rb
。这提供了rake routes
推出的以下路径。
users GET /users(.:format) {:action=>"index", :controller=>"users"}
POST /users(.:format) {:action=>"create", :controller=>"users"}
new_user GET /users/new(.:format) {:action=>"new", :controller=>"users"}
edit_user GET /users/:id/edit(.:format) {:action=>"edit", :controller=>"users"}
user GET /users/:id(.:format) {:action=>"show", :controller=>"users"}
PUT /users/:id(.:format) {:action=>"update", :controller=>"users"}
DELETE /users/:id(.:format) {:action=>"destroy", :controller=>"users"}
此外,我评论了传统的野外控制器路由。
#match ':controller(/:action(/:id(.:format)))'
要在我的用户页面上添加删除链接,我添加以下内容。
<%= link_to "Delete user", user, :method => :delete, :confirm => "Are you sure?" %>
这会生成以下HTML代码。
<a href="/users/42" data-confirm="Are you sure?" data-method="delete" rel="nofollow">Delete user</a>
我点击该链接,它会转到显示页面?!怎么了?
答案 0 :(得分:5)
您需要包含默认的Javascript文件才能正常工作:
<%= javascript_include_tag :defaults %>