我正在用我的博客实现ngTagsInput,以便在添加或编辑新帖子时,用户可以向它们添加现有的或他们自己的标签。
我的博客使用可以通过工厂访问的 firebase 数据源:
servicesModule.factory("postsDB", function($resource){
return $resource("https://datasource.firebaseio.com/Posts.json", {
id: "@id"
},
{
update: {
method: "PUT"
},
query: {
method: 'GET',
isArray: false }
});
});
因为 ngTagsInput 函数需要在其他控制器中使用,所以我想将它变成一个服务,因为标签字段在订单表单中的引用方式不同。HTML 如下所示:
<tags-input ng-model="post.Tags">
<auto-complete source="loadTags($query)"></auto-complete>
</tags-input>
我想为 ngTagsInput 创建一个服务,该服务引用我上面的其他服务(postsDB
)。我一直在尝试使用以下代码:
servicesModule.factory ( 'AddTags' , function($scope, $http, postsDB) {
var myTags = '';
var myTags = $firebaseArray(postsDB.child('Tags'));
function loadTags (query) {
return $http.get('/Tags?query=' + query);
};
});
在我的控制器中:
controllersModule.controller('AddPostCtrl', ["$scope", '$location', '$firebaseArray', '$sce', 'postsDB', 'AddTags', function($scope, $location, $firebaseArray , $sce, postsDB, AddTags){
AddTags(function(myTags){
$scope.post.Tags = myTags;
});
但是,我收到以下错误:
Error: [$injector:unpr] Unknown provider: $scopeProvider <- $scope <- AddTags
似乎它没有将 AddTags 识别为工厂服务。如何定位$scope.repeatevariable.Tags
到映射到 Firebase 源中的 myTags 键?
编辑 - 引发错误:
ervicesModule.factory ( 'InputTags' , function($http, postsDB, $firebaseArray) {
var myTags = '';
var myTags = $firebaseArray(postsDB.child('Tags'));
function loadTags (query) {
return $http.get('/tags?query=' + query);
};
});