作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个数据数组,我想在我的 services.js 中定义它们,然后将它们传递到我的 Controller 中。我尝试建立两个工厂,但它说:
Module 'myApp.services' 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.
当只定义一个工厂时,我不会收到此错误。
我也想知道是否可以/可能在一个工厂中定义两组独立的数据。
//services.js
'use strict';
angular.module('myApp.services', [])
.factory('myProperties', function() {
var myProperties = [
{
'name': '3 Bedroom Fixer Upper',
'city': 'Santa Rosa',
'state': 'CA',
'date_added': '2/3/14'
},
{
'name': '2 Bedroom Condo',
'city': 'Vallejo',
'state': 'CA',
'date_added': '4/10/20'
},
{
'name': 'Sophias Apartment',
'city': 'Salt Lake City',
'state': 'UT',
'date_added': '2/5/14'
}
];
//return the array here
return myProperties
};
.factory('buyProperties', function() {
var buyProperties = [
{
'name': '3 Bedroom Fixer Upper',
'city': 'Santa Rosa',
'state': 'CA',
'date_added': '2/3/14'
},
{
'name': '2 Bedroom Condo',
'city': 'Vallejo',
'state': 'CA',
'date_added': '4/10/20'
},
];
//return the array here
return buyProperties
});
最佳答案
删除第一个工厂定义后的分号并添加右括号:
angular.module('myApp.services', [])
.factory('myProperties', function() {
})
.factory('buyProperties', function() {
});
模块和工厂定义允许链接。
关于javascript - 如何在我的 services.js 文件中定义多个工厂?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21369531/
我是一名优秀的程序员,十分优秀!