我想使用CKEditor.
我目前使用npm安装CKEditor
所以它安装在node_modules文件夹中
我的文件夹结构就像
app - > index.js
node_modules - > ckeditor - > ...
我在index.js中要求它
在初始化库之前也设置变量
var CKEDITOR_BASEPATH = '../node_modules/ckeditor'
仍然得到dir错误
建议一些帮助
尝试改变
var CKEDITOR_BASEPATH = '../node_modules/ckeditor';
至
window.CKEDITOR_BASEPATH = '../node_modules/ckeditor/';
不要忘记目录上的斜杠
并尝试将窗口声明放在您导入的ckeditor之上
请查看此链接以获取更多信息:http : //docs.cksource.com/CKEditor_3.x/Developers_Guide/Specifying_the_Editor_Path