0

我正在用我的博客实现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);
           };
   });
4

2 回答 2

0

$scopeis not usable within a factory. It makes no sense to use $scope within a factory. From the Angular docs: Scope is the glue between application controller and the view.

于 2015-10-10T17:19:35.063 回答
0

It is obvious that you do not even use $scope object in your factory. so just remove it from your factory constructor function dependencies and you are good to go.

于 2015-10-10T17:21:22.700 回答