Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法动态创建块组件。假设块中有一个 TextControl 组件,我希望用户单击添加新字段按钮并自动创建新的 TextControl 块?
是的,此推荐块将在单击“+”按钮时添加新字段。有关事情如何在幕后工作的更好解释,请参阅此博客文章
这应该相当简单。关键是通过数组将文本控件值存储在单个属性中,而不是单独的属性。
然后,当添加一个新的文本控件时,只需将其插入到数组中。要显示控件,只需遍历数组即可。
我已经在 WordPress 插件中多次使用过这种方法,但还没有在一个区块中使用,但对于区块来说应该没有什么不同。