UEditor For ASP.Net Core Use Qiniu_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > UEditor For ASP.Net Core Use Qiniu

UEditor For ASP.Net Core Use Qiniu

 2016/10/29 5:30:45  Joes  程序员俱乐部  我要评论(0)
  • 摘要:UEditorForASP.NetCoreUseQiniu此项目为UEditor提供文件管理;后端服务使用ASP.NetCore;使用七牛提供的云存储;项目地址http://git.oschina.net/joesjiang/BaiduEditorUseQiniu.NetCore运行示例设置QiniuFileController.cs中的以下部分即可直接运行。privatereadonlystringaccessKey="xxx"
  • 标签:.net ASP.NET for net

UEditor For ASP.Net Core Use Qiniu

    class="task-list">
  • 此项目为UEditor提供文件管理;
  • 后端服务使用 ASP.Net Core;
  • 使用七牛提供的云存储;

 

项目地址

http://git.oschina.net/joesjiang/BaiduEditorUseQiniu.NetCore

 

运行示例

设置 QiniuFileController.cs 中的以下部分即可直接运行。

  private readonly string accessKey = "xxx"; // 七牛提供的 AccessKey
  private readonly string secretKey = "xxx"; // 七牛提供的 SecretKey
  private readonly string bucket = "xx"; // 在七牛设置的空间名
  private readonly string suffix = "";   // 在七牛设置的缩略图后缀
  private readonly string domain = "http://xxx.com"; // 在七牛绑定的域名

 

在你自己的项目中使用步骤

1、在你的项目文件 project.json 中添加引用 DevZH.Qiniu。

"dependencies": {
    "DevZH.Qiniu": "6.2.2.2",
    ...
  }

2、将示例项目的 wwwroot\lib\ueditor 整个文件夹复制到你项目的同样位置。

3、将示例项目的 QiniuFileController.cs 复制到你项目的同样位置并修改相关的设置信息。

4、新建任意测试视图,引入UEditor相关文件,即可正常使用

<div>
    <script type="text/plain" id="content" name="content" >
        UEditor
    </script>
</div>
<script src="~/lib/ueditor/ueditor.config.js"></script>
<script src="~/lib/ueditor/ueditor.all.js"></script>
<script type="text/javascript">
    var ue = UE.getEditor('content'); 
</script>
发表评论
用户名: 匿名