程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> UEditor For ASP.Net Core Use Qiniu,ueditorqiniu

UEditor For ASP.Net Core Use Qiniu,ueditorqiniu

編輯:關於.NET

UEditor For ASP.Net Core Use Qiniu,ueditorqiniu


UEditor For ASP.Net Core Use Qiniu

  • 此項目為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>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved