我有我的JSON字符串,其中包含我想要更新的参数
var oCreateTaskParameter = JSON.stringify
(
{
"parameters":
{
"Custom_x005f_5ef4c0a0aaa1e61180cc00155d302506": "Testing"
}
}
);
以下是我的Ajax查询
$.ajax({
url:'<<site url>>/sites/pwa/_api/ProjectServer/Projects(<<guid>>)/Draft/Tasks/GetById(<<guid>>)',
type: "POST",
contentType: "application/json;odata=verbose",
data: oCreateTaskParameter,
headers: {
"accept": "application/json;odata=verbose",
"content-type": "application/json;odata=verbose",
"X-RequestDigest": '<<Request Digest>>'
},
success:function(data){
},
error:function(data){
console.log(data);
},
async:false
});
但我得到一个错误&#34;参数参数在方法GetById&#34;
中不存在我发送参数参数,谁能告诉我这里做错了什么?