如何使用Restangular将我的任务添加回列表

时间:2014-09-20 23:46:28

标签: javascript angularjs rest restangular spring-data-rest

所以,这就是我要求明智的,初始页面加载的流程 - >获得任务 - >添加任务。添加任务,不应该要求后续获取它创建的任务或列表。

这是我的app.js到目前为止的相关部分

.config(function (RestangularProvider) {
RestangularProvider.setBaseUrl('http://localhost:8080');
RestangularProvider.addResponseInterceptor(function halInterceptor(data, operation, what) {
  var resp;

  if (operation === 'getList') {
    if (typeof data._embedded !== 'undefined') {
      resp = data._embedded[what];
      resp.page = data.page;
      return resp;
    }
    else {
      return [];
    }
  }

  return data;
});
})

这是我的控制器

'use strict';
angular.module('myTaskApp')
.controller('Task', function ($scope, Restangular) {
var tasks = Restangular.all('task');

if ( typeof $scope.tasks === 'undefined' ) {
  $scope.tasks = tasks.getList().$object;
}

$scope.add = function add() {
  tasks.post($scope.task).then(function () {
    console.log('add task: ', $scope.task);
    // MAGIC HERE
  });
 };
})
;

以下是创建

的响应标头
HTTP/1.1 201 Created
Server: Apache-Coyote/1.1
Access-Control-Allow-Origin: *
Access-Control-Allow-: POST, GET, PUT, OPTIONS, DELETE
Access-Control-Allow-Headers: content-type, x-requested-with
Access-Control-Max-Age: 3600
Location: http://localhost:8080/task/5c75235d-d9f7-4cdd-98b4-3487603d8fcb
Content-Length: 0
Date: Sat, 20 Sep 2014 06:34:59 GMT

我认为我的问题的部分原因是反应并没有回复身体,但是,我可以预测它应该是什么样子,并且在抓住位置后很容易制作。

{
"description" : "better",
"_links" : {
  "self" : {
   "href" : "http://localhost:8080/task/5c75235d-d9f7-4cdd-98b4-3487603d8fcb"
  }
 }
}

如何创建新资源,然后我可以将其添加到$scope.tasks列表中,并将其反映在我的ng-repeat中。同样,这应该没有进一步调用API。

1 个答案:

答案 0 :(得分:0)

更新了我的提供程序,该提供程序现在包含selfLink定义和post处理程序。我从响应中检索位置并构造一个部分响应对象。

.config( function ( RestangularProvider ) {
RestangularProvider.setBaseUrl( 'http://localhost:8080' );
RestangularProvider.setRestangularFields({ selfLink: '_links.self.href' });
RestangularProvider.addResponseInterceptor( function halInterceptor( data, operation, what, url, res ) {
  console.log( data, operation, what, url, res );

  if ( operation === 'getList' ) {
    if ( typeof data._embedded !== 'undefined' ) {
      var resp = data._embedded[ what ];
      resp.page = data.page;
      return resp;
    }
    else {
      return [];
    }
  }

  if ( operation === 'post' && res.status == 201 ) {
    return {
      _links: {
        self: { href: res.headers('Location') }
      }
    };
  }

  return data;
} );

然后在我的控制器中我所要做的就是使用angular.extend来组合响应并创建一个“智能对象”

angular.module('lifeManagerApp')
.controller('Task', function ($scope, Restangular) {
var tasks = Restangular.all('task');

if ( typeof $scope.tasks === 'undefined' ) {
  $scope.tasks = tasks.getList().$object;
}

$scope.add = function add() {
  tasks.post($scope.task).then(function ( task ) {
    var obj = angular.extend($scope.task, task);
    console.log('add task: ', obj );
    $scope.tasks.push(obj);
  });
};
});

值得注意的是,对于我的东西,我还必须update CORS并确保my controller wasn't loading multiple times