您好我正在尝试将字体大小插件添加到 Aloha 编辑器,但是我不断收到错误消息:
TypeError: Aloha.settings.plugins 未定义
编辑: 通过执行以下操作,我能够解决问题:
<script src="Scripts/aloha/lib/require.js"></script>
<script>
Aloha.settings = {
locale: 'en',
plugins: {}
</script>
<script src="Scripts/aloha/lib/aloha.js" data-aloha-plugins="common/ui,common/format,common/highlighteditables,common/link,community/fontsize"></script>
Aloha.settings 现在在插件实际加载之前有一个空的插件对象。我的问题现在更具体到我正在尝试使用的插件。我不知道在插件中指定哪些设置:{} 括号。
我尝试使用的插件可以在这里找到: https ://github.com/jstrouse/Aloha-Plugin-FontSize https://github.com/deliminator/Aloha-Plugin-Colorselector 后者直接从官方链接到页面: http ://aloha-editor.org/guides/plugins.html