38

I´m using AngularJS 1.1.3 to use the new $resource with promises...

How can I get the callback from that? I tried the same way I did with $http :

$resource.get('...').
  success(function(data, status) {
      alert(data);
   }).
   error(function(data, status) {
      alert((status);
   });

But there is no 'success' neither 'error' functions...

I also tried that :

$resource.get({ id: 10 },function (data) {
   console.log('success, got data: ', data);
 }, function (err) {
   alert('request failed');
 });

That always print "success, got data" even if the return is a 404 ...

Any idea?

Thanks

4

3 に答える 3

49

angulars リソースと angular 1.2の PR の時点で、angular は成功/エラー チェックを実行するより簡単な方法に切り替わります。コールバックまたは $then メソッドをアタッチする代わりに、Resource.get(..) と instance.get() の両方が $promise メソッドをサポートし、両方のプロミスを自然に返します。

angular 1.2 以降、 $promise 機能が稼働します: $promise の変更

「get」リクエストを次のように変更します (元の例は angularjs.org のフロント ページにあります)。

factory('Project', function($resource) {
  var Project = $resource('https://api.mongolab.com/api/1/databases' +
      '/youraccount/collections/projects/:id',
      { apiKey: 'yourAPIKey' }, {
        update: { method: 'PUT' }
      }
  );

  Project.prototype.update = function(cb) {
    return Project.update({id: this._id.$oid})
      .$promise.then(
        //success
        function( value ){/*Do something with value*/},
        //error
        function( error ){/*Do something with error*/}
      )
  };

  Project.prototype.destroy = function(cb) {
    return Project.remove({id: this._id.$oid})
      .$promise.then(
        //success
        function( value ){/*Do something with value*/},
        //error
        function( error ){/*Do something with error*/}
      )
  };

  return Project;
});

コントローラーのどこかで、成功とエラーに同じインターフェイスを使用できるリソース「プロジェクト」インスタンスをインスタンス化できます。

var myProject = new Project();

myProject.$get({id: 123}).
   .$promise.then(
      //success
      function( value ){/*Do something with value*/},
      //error
      function( error ){/*Do something with error*/}
   )
于 2013-04-18T07:24:03.930 に答える
29
var MyResource = $resource("/my-end-point/:action", {}, {
    getSomeStuff: { method:"GET", params: { action:"get-some-stuff" }, isArray: true },
    getSingleThing: { method:"GET", params: { action:"get-single-thing" }, isArray: false }
});

function MyController(MyResource) {
    var itemList = MyResource.getSomeStuff({}, function success() {}, function err() {});
    // will call: /my-end-point/get-some-stuff
    // will be array. each object is resource's instance
    var item = MyResource.getSingleThing({id:123}, function success() {}, function err() {});
    // will call: /my-end-point/get-single-thing?id=123
    // will be object. an instance of resource
}

ドキュメントの例もチェックしてください: ngResource

于 2013-03-29T14:51:54.163 に答える