项目环境:angular8
ace_editor相应配置:
// 开启代码折叠
this.editor.getSession().setUseWrapMode(true);
this.editor.setOptions({
mode: 'ace/mode/javascript',
readOnly: false,
theme: 'ace/theme/github',
newLineMode: 'unix'
});
问题描述:当编辑器的内容是“字符串格式”时,可以正常显示内容,把内容替换为“对象”或“数组”格式时,程序就会报错。
content = 'Hello World'; 成功
content = {
aa: '123',
bb: '123'
}; 报错
报错信息:
Unhandled Promise rejection: e.match is not a function ; Zone: <root> ; Task: Promise.then ; Value: TypeError: e.match is not a function
对象或数组需要序列化,你可以这样试试:
content = JSON.stringify({
aa: '123',
bb: '123'
});