我有一个json数据但是当它被分配给编辑器时它会丢失引号,所以任何人都可以帮助我如何将引号也引用到编辑器。
ts代码:
this.product
.getproduct(t)
.subscribe(
products => {
let editorOptions = {
showJSONEditorTab: true
};
}),
}
这里我得到了如下的console.log(this.survey_val)输出:
{"pages":[{"name":"page1"]}
的console.log(this.editor.text);
{
pages: [
{
name: "page1",
]
}
答案 0 :(得分:0)
我通过给予它来实现它,
let editorOptions = {
showJSONEditorTab: true, generateValidJSON : true
};