QuillJS 不会从 api 设置内容

QuillJS won't setContent from api

我正在尝试通过 api 调用(使用 ajax 请求)设置我的编辑器的内容,但是,它不会更新编辑器。我不确定为什么,因为当我这样做时

alert(data.content) -- it returns {"ops":[{"insert":"Test 123\n"}]}

quill.setContents({"ops":[{"insert":"Test 123\n"}]}, 'api');

按预期工作,但是,当我这样做时没有任何反应

quill.setContents(data.content, 'api')

有什么想法吗?谢谢!

setContents from APi 正在工作。

var quill = new Quill('#editor-container', {
  modules: {
    toolbar: [
      [{ header: [1, 2, false] }],
      ['bold', 'italic', 'underline'],
      ['image', 'code-block']
    ]
  },
  placeholder: 'Compose an epic...',
  theme: 'snow'  // or 'bubble'
});

var ops = [
  { insert: 'Hello ' },
  { insert: 'World!', attributes: { bold: true } },
  { insert: '\n' }
];
quill.setContents(ops, 'api');

您传递的可能是字符串而不是对象。

尝试调用 JSON.parse(data.content) 将字符串转换为对象。