POST请求REST服务的有效负载

时间:2016-02-23 21:40:50

标签: angularjs rest post angular-resource ngresource

如何在$resource中使用ngResource向请求有效负载发送POST请求到服务器?我尝试将对象传递给操作的header属性,但它不起作用。

我正在使用类似的代码:

$resource(myurl, {}, actions).callPOSTAction({}, function() {//remaining logic goes here...});

动作" callPOSTAction"如下......

callPOSTAction: {
cache: false,
cancellable: true,
data: {id: 123},
header: {
Content-Type: "application/json",
customToken: {tk:123, pk:456}
},
method: "POST",
timeout: 5000,
url: "https://domain/serviceName"
}

毕竟,在我的开发者控制台的“网络”标签中,我无法看到" customToken"作为请求有效负载传递给服务器。我在这里缺少什么?

0 个答案:

没有答案