如何使用自定义模块 AngularJs
How to use custom module AngularJs
如何开始使用这个模块:http://gregpike.net/demos/angular-local-storage/demo/demo.html
我有一个控制器:
app.controller('FormController', function ($scope, localStorageService) {
});
然后我注射了
localStorageService
如示例所示,但自然无效。我该如何解决?谢谢
首先,您 link 来自页面的脚本:
<script src=".../angular-local-storage.min.js"></script>
其次,您将模块添加到模块依赖项数组(我想这就是您错过的):
angular.module('myApp', [..., 'LocalStorageModule', ...])
然后你可以像你一样在你的组件中注入和使用localStorageService
。
也就是说,我要添加一个步骤 0:阅读此 Readme :)
我推荐你这个https://github.com/gsklee/ngStorage也使用这个语法在你缩小时不中断
app.controller('FormController', ["$scope", "otherProvider",function ($scope, otherProvider) {
//in this way angular know what to inject
}]);
如何开始使用这个模块:http://gregpike.net/demos/angular-local-storage/demo/demo.html 我有一个控制器:
app.controller('FormController', function ($scope, localStorageService) {
});
然后我注射了
localStorageService
如示例所示,但自然无效。我该如何解决?谢谢
首先,您 link 来自页面的脚本:
<script src=".../angular-local-storage.min.js"></script>
其次,您将模块添加到模块依赖项数组(我想这就是您错过的):
angular.module('myApp', [..., 'LocalStorageModule', ...])
然后你可以像你一样在你的组件中注入和使用localStorageService
。
也就是说,我要添加一个步骤 0:阅读此 Readme :)
我推荐你这个https://github.com/gsklee/ngStorage也使用这个语法在你缩小时不中断
app.controller('FormController', ["$scope", "otherProvider",function ($scope, otherProvider) {
//in this way angular know what to inject
}]);