我在一个wordpress块中有这个el函数。
这段代码位于save:function(props){
el( 'div', { className: 'col-12 col-md-6 bg-green '},
我想为背景内联设置样式。
el( 'div', { className: 'col-12 col-md-6 bg-green ', style:'background-color: red;'},
我有这个理由。完成此步骤后,我想用用户输入的颜色代码替换“红色”,例如:#5a6644。
问题是在前端,div的背景颜色变为红色。 但是在古腾堡编辑器中,这些块表示:
this block has encountered an error and cannot be previewed
有人知道我在做什么错吗?