排名
6
文章
6
粉丝
16
评论
8
{{item.articleTitle}}
{{item.blogName}} : {{item.content}}
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2024TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术
分类:
net core
.net core百度编辑器上传图片配置和.net framework还是有一点点区别
public ActionResult UploadImage(List<IFormFile> files) { var action = Request.Query["action"]; var json = ""; //第一次加载,用于百度编辑器验证配置的后台地址是否可用 if (action == "config") { json = @"{""imageActionName"":""UploadImage"",""imageFieldName"": ""upfile"",""imageCompressEnable"":""true"",""imageCompressBorder"": 1600,""imageInsertAlign"": ""none"",""imageUrlPrefix"": """",""imageAllowFiles"": ["".png"", "".jpg"", "".jpeg"", "".gif"", "".bmp""]}"; } else { //处理图片上传的逻辑....... var jsonobj = new { url = "你上传图片保存的位置,希望浏览器显示图片的url链接", state = "SUCCESS" }; json = JsonConvert.SerializeObject(jsonobj); } return new ContentResult { ContentType = "application/json;charset=UTF-8", Content = json }; }
欢迎加群讨论技术,群:677373950(满了,可以加,但通过不了),2群:656732739
评价