gpt4 book ai didi

javascript - 在 React-ace 中设置值时出现类型错误

转载 作者:行者123 更新时间:2023-12-02 21:21:27 27 4
gpt4 key购买 nike

设置值时出现错误。我正在尝试设置 JavaScript 代码,但出现以下错误。

Document.$detectNewLine
node_modules/ace-builds/src-noconflict/ace.js:7832
7829 |
7830 |
7831 | this.$detectNewLine = function(text) {
> 7832 | var match = text.match(/^.*?(\r\n|\r|\n)/m);
| ^ 7833 | this.$autoNewLine = match ? match[1] : "\n";
7834 | this._signal("changeNewLineMode");
7835 | };

我的编辑器设置是

<AceEditor 
mode="javascript"
theme="github"
name="editor"
value={this.setValue}
editorProps={{$blockScrolling: true}}
setOptions={{
enableBasicAutocompletion: false,
enableLiveAutocompletion: false,
enableSnippets: false,
showLineNumbers: true,
tabSize: 2,
}}
/>```
The setValue is

`
setValue = async () => {
let demo = await this.state.getCodeFromFile.success;
return demo;
}`

最佳答案

您是否尝试过从 setOptions 中删除最后一个逗号?这曾经给我带来了一些问题。

它看起来像这样:

setOptions={{
enableBasicAutocompletion: false,
enableLiveAutocompletion: false,
enableSnippets: false,
showLineNumbers: true,
tabSize: 2
}}

关于javascript - 在 React-ace 中设置值时出现类型错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60835902/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com