我正在尝试编写一个自定义的古腾堡滑块。我的 edit() 和 save() 函数中有这个:
<div>
{ attributes.images.map( function ( imageData ) {
return(
<figure>
<img
src={imageData.sizes.full.url}
/>
</figure>
)
},
})
</div>
当我保存时,前端看起来不错,但我的后端给了我一个错误,当我单击解决块时,它向我显示:
是因为我在元素中添加了多个吗?