我正在向 AngularJS 资源添加一对操作,但是当我调用该操作时,我的 transformRequest 函数没有被调用:
var _resource = $resource('api/NewItem/:id',
{ id: '@id' },
{
create: {
method: 'POST',
transformRequest: function (data, headersGetter) {
var result = JSON.stringify(data.productIntro);
return result;
}
},
update: {
method: 'PUT',
transformRequest: function (data, headersGetter) {
var result = JSON.stringify(data.productIntro);
return result;
}
}
});
如果我在应用程序上全局添加该功能,它可以工作:
var newItemApp = angular.module('newItemApp', ['ngResource'])
.config(function ($httpProvider) {
$httpProvider.defaults.transformRequest = function(data)
{
if (data === undefined) {
return data;
}
var result = JSON.stringify(data.productIntro);
return result;
};
});
我需要做的是从任何 POST 或 PUT 操作中删除根元素,因为 Web Api 中的默认模型绑定在该对象具有命名根时不会绑定 json 对象。