我在Rails应用程序中使用ckeditor gem。我正在尝试将codesnippet插件添加到我的CKEditor中。
我已经下载了zip文件并将其解压缩到config.extraPlugins = 'codesnippet';
并添加了这个:
config.js
到File not found: /assets/ckeditor/plugins/widget/plugin.js?t=G6DE
Error: [CKEDITOR.resourceManager.load] Resource name "widget" was not found at "/assets/ckeditor/plugins/widget/plugin.js?t=G6DE".
/assets/ckeditor/ckeditor.self.js?body=1:236
档。
但是我收到了这个错误:
struct info{
char name[50];
char address[150];
char country[20];
char region[20];
char postalcode[10];
char phonenumber[15];
char paymethod[15];
};
答案 0 :(得分:0)
它在download page上声明存在包含的依赖关系
Widget& Dialog个插件。
我想你已经有了Dialog。您需要下载Widget插件,将其包含在插件中,然后将其添加到extraplugins设置中。即
config.extraPlugins = 'codesnippet,widget';
这应该解决它 注意:widet插件也有3个依赖项。 Line Utilities,Clipboard和Widget Selection。确保已将这些插件包含在plugins文件夹中,并将其添加到extraplugins配置中 一切都会好的;)