0
ヘッダーと要求本文の両方で投稿要求を送信しようとしています。これまでのところ、私はこの点に達しています:ngResource:Angularjs - ヘッダーと要求本文を含む投稿要求を送信します。
この場合、ペイロードの配置場所はわかりません。また、電話をかけているときに、私は現在次のようなことをしようとしています:
createJob(this.jobName, this.jobAddress, this.jobContact, this.jobComments).
save().$promise.
then(function (response) {
console.log('Create job response is');
console.log(response);
}).
catch(function (error) {
console.log('Create job error is');
console.log(error);
});
助けていただければ幸いです!