我们已经在ckeditor内实现了ckfinder,并通过浏览服务器按钮ckfinder打开了本地存储文件夹。我们正在使用cloudinary进行图像存储,因此,我想在用户单击浏览服务器按钮时打开cloudinary文件夹。请帮忙 预先感谢
我用Google搜索ckfinder为cloudinary提供了任何支持,但没有找到任何东西。 在ckfinder网站上,只提到了3个插件:azure,amazon s3和dropbox
请参见下面的代码示例
string folderName = string.Concat("/", ResourceConstants.ResourceFileRootPath, "/", objconfigure.SiteID);
string baseUrl = string.Format("{0}://{1}/{2}", System.Web.HttpContext.Current.Request.Url.Scheme, System.Web.HttpContext.Current.Request.Url.Authority, ResourceConstants.ResourceFileRootPath);
config.AddBackend("default1", new LocalStorage(System.Web.HttpContext.Current.Server.MapPath(folderName)), baseUrl);
config.AddResourceType("Images", builder => builder.SetBackend("default1", "/"));
我想在config.addbackend函数中分配cloudinary文件夹和路径。 在浏览服务器按钮中,单击我要显示cloudinary中的文件夹