Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/273.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何在ckfinder或ckeditor中集成cloudinary媒体库小部件_C#_Cloudinary_Ckeditor4.x_Ckfinder - Fatal编程技术网

C# 如何在ckfinder或ckeditor中集成cloudinary媒体库小部件

C# 如何在ckfinder或ckeditor中集成cloudinary媒体库小部件,c#,cloudinary,ckeditor4.x,ckfinder,C#,Cloudinary,Ckeditor4.x,Ckfinder,我们在ckeditor中实现了ckfinder,通过浏览服务器按钮,ckfinder打开本地存储文件夹。我们正在使用cloudinary进行图像存储,因此,当用户单击浏览服务器按钮时,我想打开cloudinary文件夹。请帮忙 提前谢谢 我在谷歌上搜索了ckfinder,为cloudinary提供了任何支持,但没有找到任何东西。 在ckfinder网站中,只提到了3个插件,分别是azure、AmazonS3和dropbox 请参阅下面的代码示例 string folderName = strin

我们在ckeditor中实现了ckfinder,通过浏览服务器按钮,ckfinder打开本地存储文件夹。我们正在使用cloudinary进行图像存储,因此,当用户单击浏览服务器按钮时,我想打开cloudinary文件夹。请帮忙 提前谢谢

我在谷歌上搜索了ckfinder,为cloudinary提供了任何支持,但没有找到任何东西。 在ckfinder网站中,只提到了3个插件,分别是azure、AmazonS3和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中的文件夹”

我自己还没有测试过,但有一个第三方软件包提供了CKEditor和cloudinary媒体库小部件之间的集成:您可以使用它,或者使用相同的方法,要在应用程序中集成Fakhruddin Bharmal,您是否已经实现了自己想要的功能?怎样?我想做完全一样的事是的。。我在ckeditor中添加了一个自定义按钮&单击该按钮我打开了新的弹出窗口&在弹出窗口中我正在加载cloudinary Widget,所以您没有使用ckfinder按钮,好吗。您可以与自定义按钮和cloudinary小部件共享代码吗?那对我有很大帮助!Thks