Meteor 1.6.1.1 - 搜索所见即所得
Meteor 1.6.1.1 - searching for WYSIWYG
我正在为我的 Meteor 项目寻找所见即所得的编辑器。
它是 Meteor 版本 1.6.1.1 Angular 5.
我已经试过了[Froala][1]。
在本地运行良好,但在创建 Docker 容器后显示多个错误 (https://github.com/froala/meteor-froala/issues/27)。
所以我正在寻找解决这个问题的方法,或者寻找另一个使用 Meteor 1.6.1.1 和 Angular 5 的 simple/lightweight 所见即所得编辑器。
谢谢 ;)
我会推荐 CKEditor - https://ckeditor.com. I recommend version 4, since I worked with it and I can say that it works very well with Meteor. Put the code (CK Editor library) in the public folder of your project, after that you can simply use it everywhere. It has a download page (https://ckeditor.com/ckeditor-4/download) 如果你可以构建你的编辑器,添加你需要的一切并删除你不需要的东西,所以使用它非常好。
初始化就是这么简单:
HTML: <textarea id="ck_editor" rows="5">
JS: CKEDITOR.replace('ck_editor');
获取文字内容:
CKEDITOR.instances.ck_editor.getData()
P.S.: 我在 Meteor 1.5 中使用过这个编辑器,我没有在 1.6 中测试过它,但它应该以相同的方式工作。我也将项目部署在 docker 容器上,没有任何问题。
我建议 TinyMCE。
我推荐自托管,您可以通过 NPM 安装它:
npm install tinymce
一旦您需要这些包,请参阅 docs
我正在为我的 Meteor 项目寻找所见即所得的编辑器。
它是 Meteor 版本 1.6.1.1 Angular 5.
我已经试过了[Froala][1]。
在本地运行良好,但在创建 Docker 容器后显示多个错误 (https://github.com/froala/meteor-froala/issues/27)。
所以我正在寻找解决这个问题的方法,或者寻找另一个使用 Meteor 1.6.1.1 和 Angular 5 的 simple/lightweight 所见即所得编辑器。
谢谢 ;)
我会推荐 CKEditor - https://ckeditor.com. I recommend version 4, since I worked with it and I can say that it works very well with Meteor. Put the code (CK Editor library) in the public folder of your project, after that you can simply use it everywhere. It has a download page (https://ckeditor.com/ckeditor-4/download) 如果你可以构建你的编辑器,添加你需要的一切并删除你不需要的东西,所以使用它非常好。
初始化就是这么简单:
HTML: <textarea id="ck_editor" rows="5">
JS: CKEDITOR.replace('ck_editor');
获取文字内容:
CKEDITOR.instances.ck_editor.getData()
P.S.: 我在 Meteor 1.5 中使用过这个编辑器,我没有在 1.6 中测试过它,但它应该以相同的方式工作。我也将项目部署在 docker 容器上,没有任何问题。
我建议 TinyMCE。
我推荐自托管,您可以通过 NPM 安装它:
npm install tinymce
一旦您需要这些包,请参阅 docs