摘要: 第一种 报错 var t = JSON.parse(""); console.log(t); 第二种 正常 var t = JSON.parse('{"AA":"BB"}'); console.log(t); 第三种 报错 var t = JSON.parse('{AA:"BB"}'); console.log(t); 第四种 报错 var t = JSON.parse('{"AA":BB}'); 阅读全文
posted @ 2019-09-04 19:17 enych 阅读(353) 评论(0) 推荐(0) 编辑
摘要: //继承 可以使用父类属性 阅读全文
posted @ 2019-09-04 12:56 enych 阅读(957) 评论(0) 推荐(0) 编辑
摘要: public static string GetPostParams(HttpContext context) { string param = string.Empty; if (context.Request.Method.ToLower().Equals("post")) { ... 阅读全文
posted @ 2019-09-04 12:00 enych 阅读(3014) 评论(0) 推荐(0) 编辑
摘要: 需要新建error控制器 //输入错误的URL路径, 将请求到 Error404()方法 阅读全文
posted @ 2019-09-04 09:35 enych 阅读(1840) 评论(0) 推荐(0) 编辑