摘要: var pages = getCurrentPages(); var beforePage = pages[pages.length - 2]; // 调用列表页的获取数据函数 wx.navigateBack({ delta: 1, //返回的页面数,如果 delta 大于现有页面数,则返回到首页。 阅读全文
posted @ 2021-10-22 17:08 亦承 阅读(1990) 评论(0) 推荐(0)
摘要: select a.name tabname,a1.name '字段',b.value '描述' from sysobjects a left join sys.columns a1 on a.id = a1.object_id left join sys.extended_properties b 阅读全文
posted @ 2021-10-22 17:05 亦承 阅读(392) 评论(0) 推荐(0)
摘要: onLoad(options) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate 阅读全文
posted @ 2021-10-22 17:02 亦承 阅读(407) 评论(0) 推荐(0)
摘要: using Fast.NetCore.Web.Extend; using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Web; n 阅读全文
posted @ 2021-10-22 16:50 亦承 阅读(125) 评论(0) 推荐(0)
摘要: using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Fast.NetCo 阅读全文
posted @ 2021-10-22 16:49 亦承 阅读(327) 评论(0) 推荐(0)
摘要: using Fast.NetCore.Web.Interface; using Newtonsoft.Json; using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; 阅读全文
posted @ 2021-10-22 16:47 亦承 阅读(700) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; 阅读全文
posted @ 2021-10-22 16:31 亦承 阅读(1827) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using System.Text.RegularExpr 阅读全文
posted @ 2021-10-22 16:18 亦承 阅读(381) 评论(0) 推荐(0)
摘要: private static readonly object Obj_Lock = new object(); public static string GetUserName() { lock (Obj_Lock) { return "张三"; } } 阅读全文
posted @ 2021-10-22 16:09 亦承 阅读(346) 评论(0) 推荐(0)