简体   繁体   English

让Jquery 1.4.3和Rails.js一起玩

[英]Getting Jquery 1.4.3 and Rails.js to play nice together

I inherited a Rails App that uses jquery 1.4.3 and is using a few plugins that prevent me from upgrading past the 1.4 series. 我继承了一个使用jquery 1.4.3的Rails应用程序,并且使用了一些阻止我升级到1.4系列以上的插件。

That being said, I need Rails.js to do some unobtrusive javascripting. 话虽这么说,我需要Rails.js来进行一些实用的JavaScript编写。 However, the only 2 rails.js files I could find were the 1.4 series that works with 1.4.0, 1.4.1 and 1.4.2 however it doesn't work with 1.4.3. 但是,我只能找到2个rails.js文件,它们是适用于1.4.0、1.4.1和1.4.2的1.4系列,但是不适用于1.4.3。 The other one requires a min of jquery 1.6 or better. 另一个需要至少1.6或更高的jquery。

I also cannot downgrade to jquery 1.4.2 because that breaks some other plugins I'm using. 我也不能降级到jquery 1.4.2,因为这会破坏我正在使用的其他一些插件。

Any ideas on how to get 1.4.3 and rails.js to play nice? 关于如何获得1.4.3和rails.js玩的任何想法吗?

I tried using the 1.4 version of rails.js with jquery 1.4.3 and there is an alert that says: 我尝试将1.4版本的rails.js与jquery 1.4.3结合使用,并显示一条警告:

var jqueryVersion = $().jquery;
if (!( (jqueryVersion === '1.4') || (jqueryVersion === '1.4.1') || (jqueryVersion === '1.4.2') )){
  alert('This rails.js does not support the jQuery version you are using. Please read documentation.')
}

I commented that out and everything seems to work but I'm worried that there is a reason for those lines. 我对此进行了评论,但似乎一切正常,但我担心这些路线有原因。 Or maybe it was just an oversite that they forgot to add 1.4.3 to this alert? 还是只是他们忘记在此警报中添加1.4.3而只是一个现场站点?

I found an old version that supports 1.4.3 and the 1.5 series which I couldn't find from the github page. 我找到了一个支持1.4.3和1.5系列的旧版本,而我在github页面上找不到。 Not sure why this is hidden but I found it in RefineryCMS's codebase: 不知道为什么将其隐藏,但我在RefineryCMS的代码库中找到了它:

https://github.com/rails/jquery-ujs/blob/900d714300b284d7480e1e3f09fbecf8f0e23b27/src/rails.js https://github.com/rails/jquery-ujs/blob/900d714300b284d7480e1e3f09fbecf8f0e23b27/src/rails.js

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM