向 Sanity.io 中的数组插入值时出错

Error when inserting a value to an array in Sanity.io

所以我使用 sanity .patch() 在数组中插入数据。 但我不断收到此错误:

Error: insert(at, selector, items) takes an "at"-argument which is one of: "before", "after", "replace"

这是我的代码供参考:

post.js

// ...
{
        name: "peopleLiked",
        title: "People Liked",
        type: "array",
        of: [{ type: "string" }]
}

我在哪里使用它:

client.patch(id)
            .insert({
                "before": `peopleLiked.array[0]`,
                
                "items": [auth.currentUser.displayName]
            })

谁能帮忙。

插入语法错误,查看 docs 应该是这样的:

client.patch(id).insert('before', 'peopleLiked', [{"items": [auth.currentUser.displayName]}])

我对 Sanity 不熟悉,但看起来你可能还需要 .commit() 补丁后

希望对您有所帮助