上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页
摘要: //https全局配置 ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => true; 阅读全文
posted @ 2019-12-18 18:52 b̶i̶n̶g̶.̶ 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 还可以这样子求Unix时间戳: (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000000 原文链接:https://www.cnblogs.com/yaosj/p/11230626.html 阅读全文
posted @ 2019-12-17 21:27 b̶i̶n̶g̶.̶ 阅读(229) 评论(0) 推荐(0) 编辑
摘要: db.createUser({user: "admin",pwd: "xxx",roles: ["root"]}); 阅读全文
posted @ 2019-12-17 19:21 b̶i̶n̶g̶.̶ 阅读(242) 评论(0) 推荐(0) 编辑
摘要: //1.创建修改的 实体对象 var model = new BlogArticle(); model.AId = 12; model.ATitle = "新的数据"; model.AContent = "新的数据~~~~~"; //2.添加到EF管理容器中,并获取 实体对象 的伪包装类对象 var 阅读全文
posted @ 2019-12-04 10:33 b̶i̶n̶g̶.̶ 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 链接: https://www.zhangxinxu.com/wordpress/2016/11/css-unicode-range-character-font-face/ 阅读全文
posted @ 2018-11-08 11:53 b̶i̶n̶g̶.̶ 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 链接: https://www.zhangxinxu.com/study/201611/show-character-by-charcode.php?range=4E00-9FBB 备注: Unicode范围指定 ?range=xx-xx 阅读全文
posted @ 2018-11-08 11:38 b̶i̶n̶g̶.̶ 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 链接: https://www.zhangxinxu.com/study/201611/chinese-language-unicode-range.html 阅读全文
posted @ 2018-11-08 11:34 b̶i̶n̶g̶.̶ 阅读(790) 评论(0) 推荐(0) 编辑
摘要: 汉字:[0x4e00,0x9fa5](或十进制[19968,40869])数字:[0x30,0x39](或十进制[48, 57])小写字母:[0x61,0x7a](或十进制[97, 122])大写字母:[0x41,0x5a](或十进制[65, 90]) 阅读全文
posted @ 2018-11-08 11:28 b̶i̶n̶g̶.̶ 阅读(776) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/xiezunxu/articles/7228741.html 阅读全文
posted @ 2018-03-30 17:38 b̶i̶n̶g̶.̶ 阅读(234) 评论(0) 推荐(0) 编辑
摘要: function MyMap() { var items = {}; this.has = function (key) { return key in items; }; this.set = function (key, value) { items[key] = valu... 阅读全文
posted @ 2018-03-15 14:13 b̶i̶n̶g̶.̶ 阅读(369) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页