我正在通过 DHIS2 和在线数据开发一个反应应用程序,其结构如下:
indicators: [
{
name: "something",
attributeValues : [ {}],
anotherNode: "anything",
},
{},
{}, ...
]
我正在尝试更新整个属性值节点。我正在使用获取请求,但得到
405 方法不允许
你认为我做错了什么。这是我写的获取帖子请求。
let dataToSend = {
lastUpdated: currentTime,
created: currentTime,
value: newName,
attribute: {
id: indicatorID,
},
};
fetch(`https://www.namis.org/namis1/api/indicators/${id}/attributeValues`, {
body: JSON.stringify(dataToSend),
headers: {
Authorization: basicAuth,
"Content-type": "application/json",
},
method: "POST",
}).then((response) => response.json());
如果问题恰好是重复的,请指导我可能已经存在的解决方案。
问候。