摘要: var postData; Page({ data: { name:"1", postlist: [] }, onLoad: function (options) { var _this=this; wx.request({ url: 'http://localhost:8743/home/weix 阅读全文
posted @ 2019-11-25 17:25 芮源 阅读(394) 评论(0) 推荐(0) 编辑
摘要: //源数据 List<object> li = new List<object>(); foreach (var i in list) { li.Add(new { Id = i.Id, Name = i.Name }); } //需要过渡的实体 class TruckTeam { public s 阅读全文
posted @ 2019-09-25 19:24 芮源 阅读(1160) 评论(0) 推荐(0) 编辑
摘要: StringBuilder str = new StringBuilder(); str.Append(DateTime.Now.Millisecond); string url = "/Content/" + str + ".xlsx"; var path = Server.MapPath(url 阅读全文
posted @ 2019-09-18 15:05 芮源 阅读(1115) 评论(0) 推荐(0) 编辑
摘要: public ActionResult GetIndex() { CRMEntities db = new CRMEntities(); EasyUIJsonTree root = new EasyUIJsonTree() { text = "菜单根节点" }; IList<Trees> list 阅读全文
posted @ 2019-09-17 17:42 芮源 阅读(396) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-09-03 08:51 芮源 阅读(1) 评论(0) 推荐(0) 编辑
摘要: public class message { private string _caption; public void Show(string text, string caption, int timeout) { this._caption = caption; StartTimer(timeo 阅读全文
posted @ 2019-09-02 14:44 芮源 阅读(284) 评论(0) 推荐(1) 编辑
摘要: HttpWebRequest和HttpWebResponse类是用于发送和接收HTTP数据的最好选择。它们支持一系列有用的属性。这两个类位 于System.Net命名空间,默认情况下这个类对于控制台程序来说是可访问的。请注意,HttpWebRequest对象不是利用new关键字通过构 造函数来创建的 阅读全文
posted @ 2019-09-02 14:42 芮源 阅读(2699) 评论(0) 推荐(1) 编辑
摘要: https://www.cnblogs.com/LL-723/p/4268020.html 阅读全文
posted @ 2019-09-02 14:20 芮源 阅读(1787) 评论(0) 推荐(0) 编辑
摘要: picHeadImg.ImageLocation = string.Format("http://img3.imgtn.bdimg.com/it/u=4160106393,1595591376&fm=214&gp=0.jpg"); // picHeadImg.Image = Image.FromSt 阅读全文
posted @ 2019-09-02 11:54 芮源 阅读(1885) 评论(0) 推荐(0) 编辑
摘要: //子线程调用主线程方法一 //this.Invoke(new Action(() => { // dgvScanChip.DataSource = SaveChipList; //})); //子线程调用主线程方法一 //ControlInvoker.Invoke(this, delegate / 阅读全文
posted @ 2019-09-02 11:49 芮源 阅读(235) 评论(0) 推荐(0) 编辑