我有一个来自Material-ui的复选框,该复选框不会触发onCheck事件。

<Checkbox
  label="label"
  onCheck={onCheck}
  checked={currentDocument.ispublic}
/>


function onCheck() {
  currentDocument.ispublic = !currentDocument.ispublic;
  console.log("onCheck");
}


我尝试按照此问题中的说明删除选中的属性:React Checkbox not sending onChange

currentDocument是存储在我商店中的可观察对象。

最佳答案

难道是因为基于https://material-ui-next.com/api/checkbox/#checkbox材质的UI公开了onChange而不是onCheck吗?

09-17 18:25