内容更新字段

时间:2019-03-26 08:11:14

标签: reactjs contentful

当用户单击特定图像时,我想更新一个字段。我在图像上添加了onClick方法,该函数在下面。

我得到一个space.getEntry最后没有函数错误。

makeFav = (e) => {
    console.log(e.target)
    client.getSpace('-').then((space) => space.getEntry(this.props.sys.id))
        .then((entry) => {
            entry.fields.favorited = true
            entry.update()
                .then(entry => console.log(entry.fields.favorited))
        })
}

0 个答案:

没有答案