为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的 QuillJS Delta 不插入空格?

为什么我的 QuillJS Delta 不插入空格?

哆啦的时光机 2022-12-22 14:33:33
我有:    const delta = quill.formatText(documentData?.prediction?.range?.index, documentData?.prediction?.range?.length, { accepted: 'accepted' })    delta.insert('\t')    quill.updateContents(delta)它创建了一个delta看起来像:ops: [  {retain: 1617},  {retain: 63, attributes: {…}},  {insert: "    "}]但是当我的编辑没有在最后添加那个空间时。如果我将其更改为某些文本(如hello),则它会插入hello.但不带空格。为什么不?
查看完整描述

1 回答

?
ITMISS

TA贡献1871条经验 获得超8个赞

问题不是很清楚 - 不确定输入的数据是什么以及预期的输出是什么,但如果这是你想添加的空间,为什么不使用:


var quill = new Quill('#editor-container', {

  theme: 'snow'

});


var ops = [{

    insert: 'This is a test'

  },

];

quill.updateContents(ops)

quill.insertText(0, ' ')


查看完整回答
反对 回复 2022-12-22
  • 1 回答
  • 0 关注
  • 86 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信