我在我的反应项目中使用 AceEditor,但我不想在装订线中显示错误或警告。我怎样才能做到这一点?我尝试了以下一种方法,但没有奏效。
<AceEditor
readOnly
value={code || ''}
mode="javascript"
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
theme="github"
showError={false}
width='auto'
height={height}
annotations={null} />
谢谢你。