12 2020 档案
摘要:js 判断字符串是否为空 //判断字符是否为空的方法 function isEmpty(obj){ if(typeof obj == "undefined" || obj == null || obj == ""){ return true; }else{ return false; } } 使用:
阅读全文
摘要:#region POST from-data 表单post请求 public class FormItemModel { /// <summary> /// 表单键,request["key"] /// </summary> public string Key { set; get; } /// <
阅读全文