1

我正在尝试在我的 Symfony 项目上安装 Jodit ( https://xdsoft.net/jodit/doc/ )

我使用 webpack-encore,所以,在我的 app.js 中,我添加了:

// Jodit

const Jodit = require("jodit");
global.Jodit = Jodit;

在我的模板中:

<script>
        var editor = new Jodit('#message_content', {
            "minHeight": 200,
            "showCharsCounter": false,
            "toolbarAdaptive": false,
            "showWordsCounter": false,
            "showXPathInStatusbar": false,
            "defaultActionOnPaste": "insert_clear_html",
            "buttons": "bold,italic,underline,strikethrough,|,ul,ol,|,font,fontsize,|,image,video,table,link,|,left,center,right,|,hr,symbol,|,undo,redo"
        });
    </script>

但我得到:

Jodit 不是构造函数

4

0 回答 0