删除/销毁在使用jQuery的rails 3中不起作用

删除/销毁在使用jQuery的rails 3中不起作用,jquery,ruby-on-rails-3,destroy,Jquery,Ruby On Rails 3,Destroy,我的删除/销毁不适用于Rails 3 不适用于任何脚手架,甚至不适用于新项目 <%= link_to 'Destroy', card, :confirm => 'Are you sure?', :method => :delete %> “你确定吗?”,:method=>:delete%> 从。解决方案是重新安装Firefox。但我的也不在chrome、safari或opera中工作 生成的Html代码:-- PS:请不要说包含默认的JS文件或其他东西。因为我对

我的删除/销毁不适用于Rails 3

不适用于任何脚手架,甚至不适用于新项目

<%= link_to 'Destroy', card, :confirm => 'Are you sure?', :method => :delete %> 
“你确定吗?”,:method=>:delete%>
从。解决方案是重新安装Firefox。但我的也不在chrome、safari或opera中工作

生成的Html代码:--


PS:请不要说包含默认的JS文件或其他东西。因为我对原型并不感兴趣,因为我使用的是jQuery

编辑/更新,重要提示:当您根本不想使用原型时,这就是解决方案。在我的项目中,我只使用jQuery和相应的插件

人们的回答是:首先包括prototype等,然后安装一些gem等,以消除prototype和jQuery之间的冲突。那是垃圾

我已经贴出了答案。在选择该选项之前,请检查一次。为我工作了10多个项目,没有任何问题。您需要做的只是:


从javascript目录中删除除application.js之外的所有js文件。然后将我在答案中指定的代码粘贴到一个新文件中,并包含该文件。包括Jquery.js,然后您就都准备好了。您不需要添加默认javascript(即:prototype)或其他gem来删除冲突等。

确保在布局中包含默认Rails javascript文件

<%= javascript_include_tag :defaults %>
<%= javascript_include_tag "application" %>

如果您使用的是jQuery而不是Prototype,则需要在项目中添加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'));
        });
    });
});

确保在布局中包含默认的Rails javascript文件

<%= javascript_include_tag :defaults %>
<%= javascript_include_tag "application" %>

我遇到了Mohit遇到的同样问题,我还需要在我的JavaScript资产中包含“不引人注目的JavaScript库”(或“ujs”)。在我当前的Rails(v3.2.5)中,UJS库将自动提供。您可以通过查看GEM文件中的以下行来验证这一点:

gem'jqueryrails'

以及app/assets/javascripts/application.js文件中的以下行:

/=需要jquery\u ujs

因为我不知道还有什么更好的方法,我已经从我自己的application.js文件中删除了
require jquery_ujs
行,我花了一段时间才弄明白为什么我的
link_to…,:method=>:delete
调用不再有效了


一旦我理解了这个问题,就可以很容易地将上述两行添加回各自的文件中,然后一切又开始按预期工作。

当我使用Jquery时,为什么要这样做呢。还是为了测试的目的,我这么做了。Rails 3使用不引人注目的javascript使其工作。因此,您必须包含一些javascript框架(原型或JQuery)和适当的
rails.js
。有关更多信息,请参阅。如果您使用jQueryRails而不是prototype rails gem(默认情况下),您应该在这里获得jQueryJavascripts。这个答案仅适用于Rails 3.0。application.js是一个空白的js文件:P请检查我的答案。如果您使用的是资产管道,这并不是最好的解决方法。如果你使用资产管道,Justin Houk的答案会更好。@Justin Houk的答案会更好,我不明白为什么这个答案的票数比他高。不管怎样,谢谢你Mab879你节省了我的时间,谢谢你Justin houktoo@edisonthk因为我发布这个答案的时候。jqueryrailsgem没有发布。我现在已经改变了被接受的答案。我能理解保持更新不是一件容易的事情。。。不管怎样,快乐编码