22

I can't figure out how to get images to work like in the example on http://quilljs.com/.

I tried adding <span title="Image" class="ql-format-button ql-image"></span> to the toolbar, which adds the button, but clicking on the button does nothing and I can't find anything in the documentation. Any suggestion?

4

4 回答 4

37

更新的答案

从 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>
于 2016-11-06T23:36:17.380 回答
11

编辑:从 1.0 开始,这不再准确。克里斯霍克斯的回答是正确的。

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

quill = new Quill('#editor', {
  modules: {
    'toolbar': { container: '#toolbar' },
    'image-tooltip': true,
    'link-tooltip': true
  },
  theme: 'snow'
});
于 2015-03-13T07:21:52.660 回答
3

从 Quill 1.3 版开始,以上答案都不再有效。不幸的是,官方文档也没有太大进展。

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

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

方式1:初始化quill如下:

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

方式2:初始化quill如下:

<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 不支持调整图像大小。不过,可以使用自定义模块来做到这一点。

于 2019-08-14T13:16:17.283 回答
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'
});
于 2015-10-26T15:15:49.697 回答