如何在$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"作为请求有效负载传递给服务器。我在这里缺少什么?