rails link_to在导航到任何实体时不起作用

时间:2016-02-05 19:10:05

标签: ruby-on-rails ruby-on-rails-4 rails-routing

当网址上有参数时(导航到任何实体时)我无法导航或发布

<a href="/xxx">xxx</a>仅在我处于

的网址时才有效

http://localhost:3000/xxx

但是当我在一个具有像

这样的实体参数的网址时

http://localhost:3000/xxx/12

<a\>代码的工作,而非远程表单帖子的工作

当我附加鼠标点击Chrome时,我在http://localhost:3000/xxx这样的网址上看到了jquery函数返回undefined(导航工作没有问题的情况),但是在网址上http://localhost:3000/xxx/12函数返回 jQuery.fn.init [0]

函数(jquery摘录)就是这个

if ( !( eventHandle = elemData.handle ) ) {
        eventHandle = elemData.handle = function( e ) {

            // Discard the second event of a jQuery.event.trigger() and
            // when an event is called after a page has unloaded
            return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
                jQuery.event.dispatch.apply( elem, arguments ) : undefined;
        };
    }

0 个答案:

没有答案