我正在使用Rails进行Agile Web开发,而我的:来自products_controller的destroy方法只是将我带到了产品展示页面。几个星期前,我在Rails 3.0应用程序上遇到了另一个应用程序的问题。在那种情况下,我不得不编辑javascript,所以我猜这也可以在这里工作。
这是我的application.html.erb文件中的javascript_link_tag:
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tags %>
这是来自我的控制器的:destroy方法:
def destroy
@product = Product.find(params[:id])
@product.destroy
respond_to do |format|
format.html { redirect_to products_url }
format.json { head :ok }
我已经安装了jquery gem,而jquery是Rails 3.1的默认库,所以也许我错了为什么这不起作用?任何帮助是极大的赞赏。谢谢!
答案 0 :(得分:7)
如果您没有使用javascript,则:delete操作只会将您带到该特定帖子。
如果您想删除该条目,请使用
<%= button_to "destroy", post, :method => :delete %>
而不是
<%= link_to "destroy", post, :method => :delete %>
以下是如何使javascript工作(确保加载jquery)。
在jquery代码之后从我的存储库中加载rails.js。
查看我的存储库中的以下文件app/assets/javascripts/rails.js
app/assets/javascripts/app.js
app/views/posts/index.html look for the delete button at the bottom
app/views/controllers/posts_controller.rb look for the destroy action
代码现在应该通过ajax使你的销毁链接工作。
答案 1 :(得分:2)
这是因为您没有包含正确的js文件,或者因为您没有提供删除方法。我看起来你正确地做到了这一点:
app/views/layouts/application.html.erb
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
<%= csrf_meta_tag %>
删除方法无法正常工作,因为rails 3需要来自csrf元标记的信息,该信息是由:defaults
然后在link_to
方法中确保包含此内容:
<%= link_to "destroy", post, :method => :delete %>
答案 2 :(得分:1)
我遇到了同样的问题......
在Delete / Destroy is not working in rails 3 with Jquery
上查看我的答案如果您使用的是Jquery而不是原型,则每次尝试删除显示页面所需的任何内容时,您需要在项目中添加Jquery.rails.js。
我不记得从哪里得到解决方案和这个Jquery.rails.js文件。但肯定来自一些值得信赖的消息来源。
以下是该文件的代码。可能会帮助某人。
jQuery(function ($) {
var csrf_token = $('meta[name=csrf-token]').attr('content'),
csrf_param = $('meta[name=csrf-param]').attr('content');
$.fn.extend({
/**
* Triggers a custom event on an element and returns the event result
* this is used to get around not being able to ensure callbacks are placed
* at the end of the chain.
*
* TODO: deprecate with jQuery 1.4.2 release, in favor of subscribing to our
* own events and placing ourselves at the end of the chain.
*/
triggerAndReturn: function (name, data) {
var event = new $.Event(name);
this.trigger(event, data);
return event.result !== false;
},
/**
* Handles execution of remote calls firing overridable events along the way
*/
callRemote: function () {
var el = this,
data = el.is('form') ? el.serializeArray() : [],
method = el.attr('method') || el.attr('data-method') || 'GET',
url = el.attr('action') || el.attr('href');
if (url === undefined) {
throw "No URL specified for remote call (action or href must be present).";
} else {
if (el.triggerAndReturn('ajax:before')) {
$.ajax({
url: url,
data: data,
dataType: 'script',
type: method.toUpperCase(),
beforeSend: function (xhr) {
el.trigger('ajax:loading', xhr);
},
success: function (data, status, xhr) {
el.trigger('ajax:success', [data, status, xhr]);
},
complete: function (xhr) {
el.trigger('ajax:complete', xhr);
},
error: function (xhr, status, error) {
el.trigger('ajax:failure', [xhr, status, error]);
}
});
}
el.trigger('ajax:after');
}
}
});
/**
* confirmation handler
*/
$('a[data-confirm],input[data-confirm]').live('click', function () {
var el = $(this);
if (el.triggerAndReturn('confirm')) {
if (!confirm(el.attr('data-confirm'))) {
return false;
}
}
});
/**
* remote handlers
*/
$('form[data-remote]').live('submit', function (e) {
$(this).callRemote();
e.preventDefault();
});
$('a[data-remote],input[data-remote]').live('click', function (e) {
$(this).callRemote();
e.preventDefault();
});
$('a[data-method]:not([data-remote])').live('click', function (e){
var link = $(this),
href = link.attr('href'),
method = link.attr('data-method'),
form = $('<form method="post" action="'+href+'">'),
metadata_input = '<input name="_method" value="'+method+'" type="hidden" />';
if (csrf_param != null && csrf_token != null) {
metadata_input += '<input name="'+csrf_param+'" value="'+csrf_token+'" type="hidden" />';
}
form.hide()
.append(metadata_input)
.appendTo('body');
e.preventDefault();
form.submit();
});
/**
* disable-with handlers
*/
var disable_with_input_selector = 'input[data-disable-with]';
var disable_with_form_selector = 'form[data-remote]:has(' + disable_with_input_selector + ')';
$(disable_with_form_selector).live('ajax:before', function () {
$(this).find(disable_with_input_selector).each(function () {
var input = $(this);
input.data('enable-with', input.val())
.attr('value', input.attr('data-disable-with'))
.attr('disabled', 'disabled');
});
});
$(disable_with_form_selector).live('ajax:after', function () {
$(this).find(disable_with_input_selector).each(function () {
var input = $(this);
input.removeAttr('disabled')
.val(input.data('enable-with'));
});
});
});
答案 3 :(得分:1)
你可能已经删除了rails.js文件,该文件包含读取link_to方法创建的链接中的data-method属性的javascript代码,并更改请求的动词(get,post,put,delete) )。我有完全相同的问题因为我只是通过javascript_include_tag加载jquery.js。
如果是这种情况,请确保您拥有rails.js,它应该解决问题!
答案 4 :(得分:-2)
Agile Web Development建议从以下位置更改默认的application.html.erb:
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
到
<%= stylesheet_link_tag :all %>
<%= javascript_include_tag :defaults %>
保持导轨默认值,它应该可以正常工作。