摘要:
1.方法 function format_number(n) { var b = parseInt(n).toString(); var len = b.length; if (len <= 3) { return b; } var r = len % 3; return r > 0 ? b.sli 阅读全文
摘要:
1、创建DbHelperMySQL类 2、复制代码到类中 using System; using System.Collections; using System.Collections.Specialized; using System.Data; using MySql.Data.MySqlCl 阅读全文
摘要:
一、正常调用 1、创建DBHelper帮助类 2、复制以下代码到类中 using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; 阅读全文
摘要:
1、创建ApiHelper类 2、复制以下代码到类中 using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.T 阅读全文