All Projects → chenderong → UEditorNetCore

chenderong / UEditorNetCore

Licence: other
百度在线编辑器UEditor在ASP.NET Core下的服务端,使用简单,易于扩展。

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to UEditorNetCore

Vue Ba
vue 百度统计埋点插件
Stars: ✭ 155 (+1007.14%)
Mutual labels:  baidu
Baidu Login
Go语言实现登录百度账号
Stars: ✭ 198 (+1314.29%)
Mutual labels:  baidu
Ecommercecrawlers
码云仓库链接:AJay13/ECommerceCrawlers Github 仓库链接:DropsDevopsOrg/ECommerceCrawlers 项目展示平台链接:http://wechat.doonsec.com
Stars: ✭ 3,073 (+21850%)
Mutual labels:  baidu
Leaflet Tilelayer Baidugaode
leaflet 加载百度瓦片地图图层 以及高德 、天地图等国内常用地图
Stars: ✭ 175 (+1150%)
Mutual labels:  baidu
Jsearch
jSearch(聚搜) 是一款专注内容的chrome搜索扩展,一次搜索聚合多平台内容。
Stars: ✭ 193 (+1278.57%)
Mutual labels:  baidu
Search Engine Rank
🐘根据网站关键词,获取网站在各大搜索引擎(百度、360、搜狗)的排名情况,有利于网站seo
Stars: ✭ 197 (+1307.14%)
Mutual labels:  baidu
Ai
像查询数据库一样优雅调用人工智能API
Stars: ✭ 147 (+950%)
Mutual labels:  baidu
Alfred Web Search Suggest
Alfred search suggest workflow for various popular websites.
Stars: ✭ 249 (+1678.57%)
Mutual labels:  baidu
Baidupanfilestransfers
百度网盘批量转存工具
Stars: ✭ 192 (+1271.43%)
Mutual labels:  baidu
Nodejs Sdk
百度AI开放平台 Node.js SDK
Stars: ✭ 222 (+1485.71%)
Mutual labels:  baidu
Baiducloudsupport
百度云(网盘)下载助手
Stars: ✭ 177 (+1164.29%)
Mutual labels:  baidu
Ssssrv2rayclashtrojan
科学上网,ss, ssr, v2ray, trojan, clash, clashr,翻墙机场推荐
Stars: ✭ 186 (+1228.57%)
Mutual labels:  baidu
Dc Sdk
DC-SDK 是基于 Cesium 进行二次开发的2、3D一体 WebGis 应用框架,该框架优化了 Cesium 的使用方式和增添了一些额外功能,旨在为开发者快速构建 WebGis 应用。🌎
Stars: ✭ 206 (+1371.43%)
Mutual labels:  baidu
Vue Baidu Map
Baidu Map components for Vue 2.x
Stars: ✭ 2,191 (+15550%)
Mutual labels:  baidu
Luna Commons
市场上许多界面和工具的集合,例如ftp,httpd等文件与工具操作,包括但不限于图像处理、人脸识别等的api。
Stars: ✭ 244 (+1642.86%)
Mutual labels:  baidu
Tera
An Internet-Scale Database.
Stars: ✭ 1,846 (+13085.71%)
Mutual labels:  baidu
Baiduyun
Stars: ✭ 199 (+1321.43%)
Mutual labels:  baidu
BaiduSpider
项目已经移动至:https://github.com/BaiduSpider/BaiduSpider !! 一个爬取百度搜索结果的爬虫,目前支持百度网页搜索,百度图片搜索,百度知道搜索,百度视频搜索,百度资讯搜索,百度文库搜索,百度经验搜索和百度百科搜索。
Stars: ✭ 29 (+107.14%)
Mutual labels:  baidu
Kerasdeepspeech
A Keras CTC implementation of Baidu's DeepSpeech for model experimentation
Stars: ✭ 245 (+1650%)
Mutual labels:  baidu
Sitedorks
Search Google/Bing/Ecosia/DuckDuckGo/Yandex/Yahoo for a search term with a default set of websites, bug bounty programs or a custom collection.
Stars: ✭ 221 (+1478.57%)
Mutual labels:  baidu

UEditorNetCore .net core 2.1

把durow/UEditorNetCore 升级到 .net core 2.1 原作者地址:https://github.com/durow/UEditorNetCore

百度在线编辑器UEditor在ASP.NET Core下的服务端,使用简单,易于扩展。 关于UEditorNetCore 百度在线编辑器UEditor在ASP.NET Core下的服务端,使用简单,易于扩展。
相关文章:http://www.cnblogs.com/durow/p/6116393.html
UEditor官网:http://ueditor.baidu.com/website/index.html
UEditor源代码:https://github.com/fex-team/ueditor

使用 1.在Startup.cs的ConfigureServices方法中添加UEditorNetCore服务 public void ConfigureServices(IServiceCollection services) { //第一个参数为配置文件路径,默认为项目目录下config.json //第二个参数为是否缓存配置文件,默认false services.AddUEditorService() services.AddMvc(); }

2.添加Controller用于处理来自UEditor的请求 [Route("api/[controller]")] //配置路由 public class UEditorController : Controller { private UEditorService ue; public UEditorController(UEditorService ue) { this.ue = ue; } public void Do() { ue.DoAction(HttpContext); } }

3.修改前端配置文件ueditor.config.js 修改serverUrl为第2步Controller中配置的路由,使用例子中的路由按照以下配置: serverUrl:"/api/UEditor"

4.修改服务端配置config.json 上传类的操作需要配置相应的PathFormat和Prefix,在示例中部署在web根目录,因此Prefix都设置为"/"。使用时要根据具体情况配置。 例如示例中图片上传的配置如下: "imageUrlPrefix": "/", /* 图片访问路径前缀 */ "imagePathFormat": "upload/image/{yyyy}{mm}{dd}/{time}{rand:6}",

5.添加javascript引用

<script type="text/javascript" charset="utf-8" src="~/lib/ueditor/ueditor.config.js"></script> <script type="text/javascript" charset="utf-8" src="~/lib/ueditor/ueditor.all.min.js"> </script> <script type="text/javascript" charset="utf-8" src="~/lib/ueditor/lang/zh-cn/zh-cn.js"></script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].