作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 angularjs 种子并尝试编写一个简单的工厂并将其插入到 Controller 中。
我有一个 Row 工厂定义
angular.module('myApp')
.factory('Row', [ function () {
return 'some string';
);
}])
在我的 view1 Controller 中我有
'use strict';
angular.module('myApp.view1', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/view1', {
templateUrl: 'view1/view1.html',
controller: 'View1Ctrl'
});
}])
.controller('View1Ctrl', ['$scope', 'Row', function($scope, Row) {
}]);
我收到一个错误,它没有找到 Row 工厂。
最佳答案
您的工厂应该使用 myApp.view1
模块,因为 myApp
模块未定义。
angular.module('myApp.view1')
.factory('Row', [function() {
return 'some string';
}])
更新
如果您想创建一个新模块并向其附加工厂,那么您应该创建一个新模块并将先前的依赖项包含在 []
数组中。
angular.module('myApp', ['myApp.view1'])
.factory('Row', [function() {
return 'some string';
}])
注意:此 JS 应该在工厂 JS 之后加载,以使 myApp.view1
可用。
看起来您只从工厂返回字符串值。我想说,您可以制作constant
/value
,而不是拥有工厂。其中,使 constant
成为首选方式。因为它也将在配置阶段可用。
angular.module('myApp.view1')
.constant('Row', 'some string');
关于javascript - AngularJS : Use factory inside a controller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31004210/
我是一名优秀的程序员,十分优秀!