kod jest dobry, czy nie dokonałeś zmian na routingu, czy rake routes daje Ci - destroy_user_session DELETE ?
miałam podobne problemy z bootstrapem i js ale po przejsciu na rails4 może podbiłeś projekt do 4.
Ewidentnie problem z JS, przez co railsy nie symulują Ci rządania Delete. Wrzuć najlepiej swój plik application.js i kawałek layoutu gdzie go załączasz.
Tak jak napisał @skarlcf - przede wszystkim sprawdź, co wyrzuca konsola JS. Możliwe, że to jakaś mała pierdółka, którą po zidentyfikowaniu źródła sam łatwo usuniesz.
EDIT: @ddknapik - Przy “nieudziwnionych” routesach to, co napisałeś, jest równoważne temu, co napisał @esio.
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
// GO AFTER THE REQUIRES BELOW.
//
//= require jquery
//= require jquery_ujs
//= require_tree .
;
2. rake routes pokazuje, że mam trasę:
Problemem będzie to że w application.js załączasz jquery, później jquery_ujs, który dodaje do niego railsowe bajery, po czym wszystko nadpisujesz w layoucie bo załączasz raz jeszcze jquery.
[quote]link_to with a method anything other than GET is actually a bad idea, as links can be right clicked and opened in a new tab/window, and because this just copies the url (and not the method) it will break for non-get links. Also, links are clicked on by web page indexing spiders, and even though the links in question are probably only available to logged in users (and therefore not spiders) it’s still bad practise.
It’s better to use button_to instead, which makes rails generate a mini-form to produce the same result.
From a practical point of view buttons are better (for the above reasons) but they’re also better from a conceptual point of view: generally speaking, links should “take you somewhere”, whereas buttons should “do something”. It’s better to keep these two basic functionalities seperate.[/quote]