Rails 3 link_to (:method => :delete) not working

前端 未结 6 2056
抹茶落季
抹茶落季 2020-11-30 08:13

I\'m having trouble with my verbs in Rails...

viewing a page for a resource (Dog) which has_many (Fleas). Embedded in dog\'s show.html.haml

6条回答
  •  被撕碎了的回忆
    2020-11-30 08:28

    Hi you can also try this:

    application.html.erb:

    <%= javascript_include_tag 'jquery_ujs' %>
    
    OR
    
    <%= javascript_include_tag "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js", "jquery.rails.js" %>
    

提交回复
热议问题