上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页

2022年10月28日

摘要: json字符串转C#对象 说明:如果列表增加了了一个字段,名字为id,类型为int,它原来的List<Class>中的Class增加了一个id字段。C#序列化转换不会报错,但是每个List会给id默认为0。 #region 聚合数据,银行卡类型及真伪查询,返回实体,2017-12-27 09:11新 阅读全文
posted @ 2022-10-28 17:32 Jankie1122 阅读(416) 评论(0) 推荐(0) 编辑
摘要: json字符串demo { "name": "BeJson", "url": "http://www.bejson.com", "page": 88, "isNonProfit": true, "address": { "street": "科技园路.", "city": "江苏苏州", "coun 阅读全文
posted @ 2022-10-28 17:31 Jankie1122 阅读(17) 评论(0) 推荐(0) 编辑
摘要: MVC简单ajax请求 @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> <script src=" 阅读全文
posted @ 2022-10-28 17:30 Jankie1122 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 远程服务器返回错误: (411) 所需的长度 这是由于IIS7中POST请求限制的原因造成的,在IIS7中站点被以POST方式请求时,必须要求传递参数,如果调用的API无须传递参数,那么请加上一句即可解决411异常. request.ContentLength = 0; 阅读全文
posted @ 2022-10-28 17:29 Jankie1122 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 报错: 请求被中止 连接被意外关闭。 //发起请求 HttpWebRequest wbRequest = (HttpWebRequest)WebRequest.Create(urlGet); wbRequest.Method = "POST"; wbRequest.ContentType = "ap 阅读全文
posted @ 2022-10-28 17:28 Jankie1122 阅读(89) 评论(0) 推荐(0) 编辑

2022年10月26日

摘要: sqlserver遍历所有表和所有字段,双游标循环。 --sqlserver遍历所有表和所有字段,双游标循环。 begin declare @TableIdInt int declare @TableNameStr varchar(50) declare @ColumnIdInt int decla 阅读全文
posted @ 2022-10-26 17:13 Jankie1122 阅读(167) 评论(0) 推荐(0) 编辑

2022年10月20日

摘要: Linq分组取分组中的最大值,并且拿到最大值对应的id 第一种分组方式:唯一键:手机号码; List<PhoneCallCTIPushData> phoneCallCTIPushDatas = new List<PhoneCallCTIPushData>(); PhoneCallCTIPushDat 阅读全文
posted @ 2022-10-20 10:36 Jankie1122 阅读(481) 评论(0) 推荐(0) 编辑

2022年9月20日

摘要: //商品标题 int charNumber = 15;//charNumber为要截取的每段的长度 int fontSize = 25;//商品标题字体大小 if (goodTitle.Length > charNumber) { ArrayList arrlist = new ArrayList( 阅读全文
posted @ 2022-09-20 16:45 Jankie1122 阅读(43) 评论(0) 推荐(0) 编辑
摘要: #region 发起apiUrl请求 /// <summary> /// 发起apiUrl请求 /// </summary> /// <param name="url"></param> /// <param name="paramData"></param> /// <param name="he 阅读全文
posted @ 2022-09-20 16:38 Jankie1122 阅读(163) 评论(0) 推荐(0) 编辑
摘要: UserBankCard userBankCard = new UserBankCard() { BankCard = bankCard, UserID = userID, RealName = realName, IDCard = IdCard, Phone = cardPhone, IsDefa 阅读全文
posted @ 2022-09-20 16:26 Jankie1122 阅读(246) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页