上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页
摘要: 原始数据: 目标数据: 方法: SELECT a.Province_Code, a.Country_Code, c.value('.', 'nvarchar(64)') AS Province_Name FROM HR_Province a CROSS APPLY (SELECT CAST('<ro 阅读全文
posted @ 2020-05-13 09:14 无敌师爷IT技术Blog 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 1 CREATE function [dbo].[Split] 2 ( 3 @SourceString nvarchar(max), 4 @Separator nvarchar(max)=',' 5 ) 6 returns @temp table(split nvarchar(128)) 7 --实 阅读全文
posted @ 2020-05-13 09:04 无敌师爷IT技术Blog 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 #user nobody; 2 3 #==工作进程数,一般设置为cpu核心数 4 worker_processes 1; 5 6 #error_log logs/error.log; 7 #error_log logs/error.log notice; 8 #error_log logs/er 阅读全文
posted @ 2020-01-15 15:34 无敌师爷IT技术Blog 阅读(3044) 评论(0) 推荐(0) 编辑
摘要: 1. 在开发机测试好的Swagger发布到https服务器后可能出现下面问题: 2、但是直接浏览docs地址是可以读取到数据。 3、解决办法是在SwaggerConfig.cs中取消代码注释,并实现GetRootUrlFromAppConfig方法。 1 //c.RootUrl(req => Get 阅读全文
posted @ 2019-12-11 14:07 无敌师爷IT技术Blog 阅读(1743) 评论(0) 推荐(0) 编辑
摘要: 官方解释如下: Binary data Binary data allows you to send things which you can not enter in Postman, for example, image, audio, or video files. You can send 阅读全文
posted @ 2019-11-29 10:56 无敌师爷IT技术Blog 阅读(2676) 评论(0) 推荐(1) 编辑
摘要: 1、右击Web API项目,选择Nuget程序包管理,搜索SwashBuckle, 然后安装。 2、修改SwaggerConfig.cs文件,设置版本及标题。 3、创建项目注释xml文档: (名称保持与上c.IncludeXmlComments方法中的xml文件名一致) 4、启动项目浏览https: 阅读全文
posted @ 2019-11-22 17:19 无敌师爷IT技术Blog 阅读(132) 评论(0) 推荐(0) 编辑
摘要: public enum HttpStatusCode { // // 摘要: // 等效于 HTTP 状态 100。System.Net.HttpStatusCode.Continue 指示客户端可能继续其请求。 Continue = 100, // // 摘要: // 等效于 HTTP 状态 10 阅读全文
posted @ 2019-11-19 13:28 无敌师爷IT技术Blog 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 1、WebAPI方法: [HttpPost] public HttpResponseMessage TransferData(dynamic obj) { MethodReturnModel<string> returnModel = new MethodReturnModel<string>(); 阅读全文
posted @ 2019-11-18 10:55 无敌师爷IT技术Blog 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1、WebAPI方法: public HttpResponseMessage GetAttachmentList() { HttpResponseMessage result = null; try {string fileName1 = "Test001.txt"; string fileName 阅读全文
posted @ 2019-11-18 10:45 无敌师爷IT技术Blog 阅读(404) 评论(0) 推荐(0) 编辑
摘要: http://www.51aras.com/?id=47 阅读全文
posted @ 2019-11-03 12:43 无敌师爷IT技术Blog 阅读(283) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页