我正在尝试使用 CKEditor 的 wordcouter 插件。我一直在关注这个,但它似乎不起作用。经过一番探索,我发现有许多不同的config.js
文件和许多plugin
目录。我应该使用哪一个?
app/assets/ckeditor/plugins/
app/assets/ckeditor/_source/plugins/
app/assets/javascripts/ckeditor/plugins/
app/assets/javascripts/ckeditor/_source/plugins/
app/assets/javascripts/ckeditor/_source/core/plugins.js
app/assets/ckeditor/_source/core/plugins.js
当我解压缩 wordcount 时,它给了我一个名为的目录wordcount_1.05
,我应该将其重命名为 justwordcount
吗?
我在我的config.js
文件中输入以下内容:
config.extraPlugins = 'wordcount';
config.wordcount = {
// Whether or not you want to show the Word Count
showWordCount: true,
// Whether or not you want to show the Char Count
showCharCount: false
};
但这似乎根本没有做任何事情。如果我稍微修改它(这只适用于我的 app/assets/javascripts/ckeditor/config.js 文件)以使其:
CKEDITOR.config
然后我的文本框完全停止显示。所以我觉得这是要修改的正确文件。
谢谢您的帮助!