我是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>
我觉得这可能是我犯的一个非常愚蠢的错误。但不确定我哪里出错了,非常感谢帮助。
提前致谢。