在 sailsjs 中使用 ckeditor 但 filebrowser 不工作

using ckeditor in sailsjs but filebrowser is not working

我正在使用 ckeditor 最新版本和 sailsjs 中的完整包。我正在使用从服务器功能浏览文件。

//ckeditor/config.js

CKEDITOR.editorConfig = function( config ) {
    config.filebrowserBrowseUrl = '/files';
};

assets/files 文件夹中有很多图像。当我单击浏览服务器时,将打开一个新选项卡并且 url 是 http://example.com/files?CKEditor=ck&CKEditorFuncNum=1&langCode=en

但我得到的是默认未找到屏幕。但是如果我从 url 访问图像,比如 http://example.com/files/ok.png. I Can see it in browser. But if i request http://example.com/files . I need to see list of images from files folder. What i need is the following or something file browser.

您提供的屏幕显示 CKFinder 文件管理器,它可以很容易地与 CKEditor 集成。 CKFinder 工作需要一个服务器端连接器 - 不幸的是,现在 node.js.

没有连接器

您可以在 sails.js 中找到 CKEditor File Browser API helpful, as it allows to integrate any other file browser. See this answer 的基本用法。