未捕获的TypeError:b不是nodejs中的函数(电子)

时间:2017-05-06 19:30:49

标签: javascript node.js electron

我从npm包管理器安装了gentelella模板,我试图像这样包含PNotify脚本(css包含在顶部):

<!-- jQuery -->
<script src="node_modules/gentelella/vendors/jquery/dist/jquery.min.js"></script>

<!-- PNotify -->
<script src="node_modules/gentelella/vendors/pnotify/dist/pnotify.js"></script>

然而,当我执行应用程序时,我收到此错误:

pnotify.js:6 Uncaught TypeError: b is not a function
at q (pnotify.js:6)
at pnotify.js:31
at pnotify.js:6
at pnotify.js:6

当我使用浏览器执行index.html时效果很好,为什么?

谢谢!

1 个答案:

答案 0 :(得分:1)

似乎jquery没有正确加载。

我做到了这一点并且有效:

Electron: jQuery is not defined