如何通过座舱API更新

时间:2019-02-17 18:44:27

标签: javascript json ajax rest

我需要能够通过座舱api更新,但它会创建一个新条目。

我尝试使用相同的凭据,但仍然输入了一个新条目。

Create / Update collection entries

fetch('/api/collections/save/posts?token=xxtokenxx', {
    method: 'post',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
        data: {...}
    })
})
.then(res=>res.json())
.then(entry => console.log(entry));

用于创建和更新的代码是相同的,我需要一个示例,其中向我展示了如何使用此api更新代码。 可以找到https://getcockpit.com/documentation/api/collections

1 个答案:

答案 0 :(得分:0)

对于将来的引用,您需要在查询中包括“ _id”以更新条目。