- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的节点应用程序遇到了著名的Unknown provider
错误,我无法弄清楚原因。
应用程序.js
var app = angular.module('citigraph', ['addCtrl', 'mygservice', 'stationservice']);
添加Ctrl.js
var addCtrl = angular.module('addCtrl', ['mygservice', 'rzModule', 'chart.js', 'stationservice']);
addCtrl.controller('addCtrl', function($scope, $http, $rootScope, gservice, stationservice){ ... }
站服务.js
angular.module('stationservice', []).service('mystationservice', function($http){ ... }
错误详情:
Error: [$injector:unpr] Unknown provider: stationserviceProvider <- stationservice <- addCtrl
最佳答案
看起来您没有正确使用模块。使用单个模块名称并重用该模块。如果省略第二组参数,则可以通过名称再次检索。
您可以创建多个模块,但当您希望将多个项目组合在一起作为一个功能时,通常会这样做。
应用程序.js
// add common external dependencies to this module to the [] array
var app = angular.module('citigraph', []);
添加Ctrl.js
// add controller to same module
var app = angular.module('citigraph');
app.controller('addCtrl', ['$scope', '$http', '$rootScope', 'gservice', 'stationservice', function($scope, $http, $rootScope, gservice, stationservice){ ... }]
站服务.js
// add service to same module
angular.module('citigraph').service('mystationservice', ['$http', function($http){ ... }]
关于javascript - 提供 2 项服务的未知提供商,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44310355/
我在前几天的测验中遇到了以下问题。 Consider the code fragment (assumed to be in a program in which all variables are
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
我刚开始接触 Objective-C,一般来说是 C,所以我想这也是一个 C 问题。它更像是一个为什么的问题,而不是一个如何做的问题问题。 我注意到,在除以两个整数时,小数部分向下舍入为 0,即使结果
我是一名优秀的程序员,十分优秀!