我在通过Angular加载我的kendo脚本时遇到问题。错误是:
错误:[$ injector:modulerr]无法实例化模块 kendo.directives由于:
错误:[$ injector:nomod]模块'kendo.directives'不可用! 您要么错误拼写了模块名称,要么忘记加载它。如果 注册模块确保您将依赖项指定为 第二个论点。
这就是我尝试加载模块的方式:
angular.module('ar', ["kendo.directives"]).controller('InventoryController', InventoryController);
在我的HTML页面中,Kendo脚本以这种方式调用:
<script src="~/Scripts/Kendo/2014.1.528/kendo.all.min.js"></script>
还有什么我想念的吗?