admin管理员组文章数量:1352192
I'm working on an Electron project, and when attempting to include jQuery, I get this error:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 Uncaught SyntaxError:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 b),b&&a.jQuery===n&&(a.jQuery=Hb),n},b||(a.jQuery=a.$=n),n});jQuery v3.0.0-pre
I'v attempted to use the way that was remended in the Electron issues page (window.$ = window.jQuery = require('./../js/jquery.min.js');). It always throws this error though.
Any ideas?
I'm working on an Electron project, and when attempting to include jQuery, I get this error:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 Uncaught SyntaxError:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 b),b&&a.jQuery===n&&(a.jQuery=Hb),n},b||(a.jQuery=a.$=n),n});jQuery v3.0.0-pre
I'v attempted to use the way that was remended in the Electron issues page (window.$ = window.jQuery = require('./../js/jquery.min.js');). It always throws this error though.
Any ideas?
Share Improve this question asked May 16, 2015 at 1:48 mattrickmattrick 3,9106 gold badges30 silver badges43 bronze badges3 Answers
Reset to default 5<script type="text/javascript">
window.$ = window.jQuery = require(__dirname+'/js/jquery.js');
</script>
I used this for jquery 1.9.1 version its works fine.
Looks like adding "node-integration": false
to my BrowserWindow constructor fixed it. I'd still like an explanation why I have to do so though :)
To answer "why", according to this post: https://github./atom/electron/issues/254
"jQuery contains...
if ( typeof module === "object" && typeof module.exports === "object" )
{
// set jQuery in `module`
}
else
{
// set jQuery in `window`
}
module is defined, even in the browser-side scripts. This causes jQuery to ignore the window object and use module, so the other scripts won't find $ nor jQuery in global scope.."
本文标签: javascriptElectronjQuery ErrorsStack Overflow
版权声明:本文标题:javascript - Electron - jQuery Errors - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909457a2560123.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论