我第一次使用ng-joyride
。
我做了bower install ng-joyride --save
。并将其与其他模块一起包含在我的模块中:
angular.module('some', [ 'ionic','ngJoyRide','ui.router',])
现在我无法看到我应用的视图部分。控制台说
Uncaught ReferenceError: jQuery is not defined
and
Uncaught Error: [$injector:modulerr] Failed to instantiate module XYZ due to:
Error: [$injector:modulerr] Failed`enter code here` to instantiate module main due to:
Error: [$injector:modulerr] Failed to instantiate module ngJoyRide due to:
Error: [$injector:nomod] Module 'ngJoyRide' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
但在包括ngJoyRide之前,我没有遇到任何与Jquery有关的问题。 我的index.html中带有jquery的脚本标记如下所示:
<script src="bower_components/jquery/dist/jquery.js"></script>
我觉得这可能是我犯下的一个非常愚蠢的错误。但不确定我哪里出错了,非常感谢帮助。
提前致谢。