当前与此有关。
const configDataNode = document.getElementById('config_data');
const editor = CodeMirror.fromTextArea(
document.getElementById('config_data_editor'),
{
// lineNumbers: true,
mode: 'javascript',
// tabSize: 2,
// indentWithTabs: true,
// value: JSON.stringify(gon.config.initialData, 2, 2),
},
);
editor.on('change', changeObject => {
const {text} = changeObject;
configDataNode.value = text;
});
这是我的代码。
答案 0 :(得分:3)
发生这种情况是由于void fun()
{
const long len = (1024 * 1024) / 4; // 1 MB
int aa[len]{};
}
int main()
{
fun();
const long len = (1024 * 1024) / 4; // 1 MB
int aa[len]{};
}
对象的值字段为TextArea
,因此在undefined
CodeMirror
库codemirror.js
内部正在初始化options.value
变量也未定义,因此稍后在源doc
中与doc子字段匹配(如果doc未定义,则对象键可能如何存在)。
modeOption
希望这可能对某人有所帮助。
答案 1 :(得分:1)
问题在于document.getElementById('config_data_editor')
不是文本区域。