System.Resources.ResourceManager rs = new System.Resources.ResourceManager("NetWebBrowser.Resource", typeof(Resource).Assembly);//此处的 NetWebBrowser.Re ...
// SqlDbType转换为C#数据类型 public static Type SqlType2CsharpType(SqlDbType sqlType) { switch (sqlType) { case SqlDbType.BigInt: return typeof(Int64); case ... ...
分类:
数据库 时间:
2019-05-28 09:29:26
阅读次数:
103
const isType = (obj, type) => { if (typeof obj !== 'object') return false; const typeString = Object.prototype.toString.call(obj); let flag; switch (t ...
分类:
其他好文 时间:
2019-05-27 15:11:53
阅读次数:
104
1 2 3 4 5 6 7 77 78 79 80 81 82 83 ...
分类:
编程语言 时间:
2019-05-26 14:31:02
阅读次数:
199
网上搜索这个问题一般会给出typeof、 instanceof 、constructor、Object.prototype.toString.call 和 $.type 这几种方法,关于Object.prototype.toString.call的原理:可以看下这篇文章: https://www.c ...
分类:
Web程序 时间:
2019-05-25 13:14:08
阅读次数:
100
ES5之前提供了 5种基本数据类型 和 1种引用数据类型 基本数据类型:Undefined, Null, String, Number, Boolean 引用数据类型:Object ES6开始引入了一种新的基本数据类型 Symbol,表示独一无二的值 1、typeof 操作符 typeof 是一个操 ...
分类:
编程语言 时间:
2019-05-23 23:05:16
阅读次数:
130
aes加密有几种模式:CBC,AES-128bit, Pkcs7补码方式(后台有可能是PKCS5Padding,是一样的),安卓和ios的key密钥对长度没有要求,但是前端web的密钥和偏移量必须是16位的,才能与java后台对上,前端代码如下 需要下载CryptoJS的包,下载:https://c ...
分类:
其他好文 时间:
2019-05-21 20:53:42
阅读次数:
140
学习了一些最基础的JavaScript语法: ...
分类:
编程语言 时间:
2019-05-20 17:16:26
阅读次数:
98