我正在尝试在inspector控件中创建一个复选框,该复选框将更改字体大小,但单击时不会选中它
var CheckboxControl = wp.components.CheckboxControl
el(FormToggle,{
help: \'If checked the text will show with large font\',
checked: false,
label: \'Show large font\',
onChange: function(state){
props.setAttributes({ textSize: state })
}
})
在
wordpress documentation 代码似乎与我的不同,它无法应用于我所拥有的。我看到有一段代码改变了它的状态,但我无法将其集成到我的代码中:
onChange={ ( isChecked ) => { setState( { isChecked } ) } }