摘要:
public class BaseHttpClient { protected string contentType; public BaseHttpClient() { this.contentType = "application/json"; } protected const int RES 阅读全文
摘要:
public class Mail { private string mailkey; private string mailSecret; public string mailFrom; public Mail() { this.mailkey = BaseHelper.GetValue("Mai 阅读全文
摘要:
public class WebApi { /// <summary> /// 成功后的输出 /// </summary> /// <param name="data"></param> /// <returns></returns> public static ResultDTO Success( 阅读全文
摘要:
兼容性问题: iOS 5.0- 的Date构造函数不支持规范标准中定义的YYYY-MM-DD格式,如 new Date('2013-11-11') 是 Invalid Date, 但支持YYYY/MM/DD格式,可用 new Date('2013/11/11')IOS(7.1.1版本)使用webap 阅读全文