如何在Quill JS中添加图像?

时间:2015-03-12 11:46:01

标签: javascript richtext rte quill

我无法弄清楚如何让图像像http://quilljs.com/上的示例一样工作。

我尝试将<span title="Image" class="ql-format-button ql-image"></span>添加到工具栏中,这会添加按钮,但点击该按钮什么都不做,我在文档中找不到任何内容。有什么建议吗?

4 个答案:

答案 0 :(得分:11)

更新了答案

从版本1.0及更高版本开始,您不再需要添加默认包含的工具提示模块。如何启用它的一个例子就是这个。

    <script>
            var toolbarOptions = [
                ['bold', 'italic', 'underline', 'strike'],        // toggled buttons
                ['blockquote', 'code-block'],

                [{ 'header': 1 }, { 'header': 2 }],               // custom button values
                [{ 'list': 'ordered'}, { 'list': 'bullet' }],
                [{ 'script': 'sub'}, { 'script': 'super' }],      // superscript/subscript
                [{ 'indent': '-1'}, { 'indent': '+1' }],          // outdent/indent
                [{ 'direction': 'rtl' }],                         // text direction

                [{ 'size': ['small', false, 'large', 'huge'] }],  // custom dropdown
                [{ 'header': [1, 2, 3, 4, 5, 6, false] }],
                [ 'link', 'image', 'video', 'formula' ],          // add's image support
                [{ 'color': [] }, { 'background': [] }],          // dropdown with defaults from theme
                [{ 'font': [] }],
                [{ 'align': [] }],

                ['clean']                                         // remove formatting button
            ];

        var quill = new Quill('#editor', {
            modules: {
                toolbar: toolbarOptions
            },

            theme: 'snow'
        });
    </script>

答案 1 :(得分:10)

编辑:自1.0起不再准确。克里斯霍克斯的answer是正确的。

遗憾的是,这在任何地方都没有记录,但您需要包含image-tooltip模块。例如,这是quilljs.com主页上的编辑器使用的内容:

quill = new Quill('#editor', {
  modules: {
    'toolbar': { container: '#toolbar' },
    'image-tooltip': true,
    'link-tooltip': true
  },
  theme: 'snow'
});

答案 2 :(得分:2)

以上答案在js中是正确的,但你必须在编辑器中添加html,例如:

<span class="ql-format-group">
  <span title="Link" class="ql-format-button ql-link"></span>
  <span class="ql-format-separator"></span>
  <span title="Image" class="ql-format-button ql-image"></span>
</span>

之后放入js

quill = new Quill('#editor', {
  modules: {
    'toolbar': { container: '#toolbar' },
    'image-tooltip': true,
    'link-tooltip': true
  },
  theme: 'snow'
});

答案 3 :(得分:0)

从Quill 1.3版开始,以上所有答案均无效。 不幸的是,官方文档也没有什么进展。

您有两种方法来解决问题,这两种方法都适用于官方主题 Snow Bubble 。 无论哪种方式,您不必添加以下代码:

'image-tooltip': true,
'link-tooltip': true

方法1 : 初始化羽毛笔,如下所示:

var editor = new Quill('#editorDiv', 
{
    modules: {
      toolbar: [
            ...
            ['image'],
            ...
        ],
        //not needed anymore: 'image-tooltip': true,
        //not needed anymore: 'link-tooltip': true
        ...
    },
    ...
});

方法2 : 初始化羽毛笔,如下所示:

<div id="editorToolbarDiv">
  ...
  <button class="ql-image"></button>
</div>
<div id="editorDiv"></div>
var editor = new Quill('#editorDiv', 
{
    modules: {
        toolbar: '#editorToolbarDiv',
        //not needed anymore: 'image-tooltip': true,
        //not needed anymore: 'link-tooltip': true,
        ...
    },
    ...
});

从1.3版开始,Quill不支持调整图像大小。不过,可以使用一个自定义模块来做到这一点。