提问人:Lavanya 提问时间:11/13/2023 最后编辑:VLAZLavanya 更新时间:11/13/2023 访问量:29
在打字稿中的位置 4 处的 JSON 中意外<令牌 [已关闭]
Unexpected token < in JSON at position 4 in typescript [closed]
问:
我正在使用 POST API 在 Typescript 中工作。我已经使用 Postman 检查了 URL,它工作正常,此内容类型仅支持此 URL。Content-type : 此 body(Obj) 不支持 application/json。我在 JSON 中的位置 4 处收到意外的令牌<
我的代码如下所示:
const url= `https://dev.azure.com/{OrgName}/{ProjectName}/_apis/wit/workitems/$Task?api-version=7.0`;
const Obj=[{"op":"add",
"path":"/fields/System.Title",
"from": "null",
"value": "Sample task"}];
const headers={
Authorization: `Basic ${auth}`,
"Content-Type": "application/json-patch+json; charset=utf-8;",
fetch(url, {
// We need to set the `method` to `POST` and assign the headers
method: `POST`,
body: JSON.stringify(Obj),
headers: headers
})
.then((response)=>response.json()).then((data)=>console.log(data))
.catch(error=>console.log(error));
}
我曾尝试使用try并捕获它给出相同的错误。我需要在DevOps中检索数据。
答: 暂无答案
评论