当用户单击特定图像时,我想更新一个字段。我在图像上添加了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))
})
}