我有一个显示项目列表的角度视图,每个项目都有两个按钮将每个活动设置为暂停/开始。我知道这是 angular $resource 的一个非常基本的问题,但是我无法在成功 $start 时更新项目(在成功回调中,我无法访问与该项目相关的任何内容)。
function CampaignsListCtrl($scope, Campaign, $resource) {
$scope.campaigns = Campaign.query();
$scope.startCampaign = function () {
var c = new Campaign(this.campaign);
c.status = 1;
c.$start(function success(response) {
//here I'd like to update the value but can't access the item.
//for example this.campaign.status = 1 doesn't work
//how can I access the ng-repeat item to update it on success $start?
//the response represents the updated Object
console.log (response);
}, function error (response) {
console.log (response)
});
}
$scope.pauseCampaign = function () {
var c = new Campaign(this.campaign);
c.status = 0;
c.$pause(function success(response) {
console.log (response);
}, function error (response) {
console.log (response)
});
}
}
//// and Campaign is defined as factory
mongoAPI.
factory('Campaign', ['$resource', '$http', function($resource, $http) {
var actions = {
'start': {method:'POST'},
'pause': {method:'POST'}
}
var res = $resource('/api/campaign.js',{}, actions)
return res;
}]);
在我的观点中:
<div ng-repeat="campaign in campaigns">
<button type="button" ng-show="campaign.status==0" ng-click="startCampaign(campaign)" class="btn"><i class="icon-play"></i></button>
<button type="button" ng-show="campaign.status==1" ng-click="pauseCampaign(campaign)" class="btn"><i class="icon-pause"></i></button>
</div>