摘要: 1 --触发器学习 2 3 Insert Update Detele 4 Inserted 插入后该行的数据 更新后该行的数据(新数据) 不可用 5 Deleted 不可用 更新前该行的数据(旧数据) 删除前该行的数据 6 7 -- 8 --DML触发器 9 -- 10 --表新增时触发 11 12 阅读全文
posted @ 2020-07-17 16:42 WuXinheng 阅读(258) 评论(0) 推荐(0)
摘要: 1 autoUpdate: function() { 2 console.log(new Date()) 3 var self = this 4 // 获取小程序更新机制兼容 5 if (wx.canIUse('getUpdateManager')) { 6 const updateManager 阅读全文
posted @ 2020-07-17 16:36 WuXinheng 阅读(430) 评论(0) 推荐(0)
摘要: 1 const accountInfo = wx.getAccountInfoSync(); 2 var version=accountInfo.miniProgram.version 官方地址:https://developers.weixin.qq.com/miniprogram/dev/api 阅读全文
posted @ 2020-07-17 16:31 WuXinheng 阅读(3606) 评论(0) 推荐(1)
摘要: 官方地址:https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.getLocation.html 1 wx.getLocation({ 2 type: 'wgs84', 3 success (res) { 4 const l 阅读全文
posted @ 2020-07-17 16:10 WuXinheng 阅读(424) 评论(0) 推荐(0)
摘要: 方法 介绍 使用 wx.redirectTo(Object object) 关闭当前页面,跳转到应用内的某个页面。 但是不允许跳转到 tabbar 页面。 url:需要跳转的路径,页面A向页面B跳转成功后,页面A立即释放 wx.navigateTo(Object object) 保留当前页面,跳转到 阅读全文
posted @ 2020-05-27 18:46 WuXinheng 阅读(1479) 评论(0) 推荐(0)
摘要: 方法 返回值含义 IsArray(VarName As Object) 变量是否指向数组 IsDBNull(Expression As Object) 指示表达式的计算结果是否为System.DBNull类 IsError(Expression As Object) 指示表达式是否是异常类型 IsN 阅读全文
posted @ 2020-05-27 18:37 WuXinheng 阅读(168) 评论(0) 推荐(0)
摘要: 官方文档地址:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html 功能 介绍 使用方法 获取手机号 获取微信用户绑定的手机号,需先调用wx.login接口。 因为需要用 阅读全文
posted @ 2020-05-26 18:04 WuXinheng 阅读(1467) 评论(0) 推荐(0)
摘要: #我是使用时是成功代理的,以下代码仅供参考 #负载均衡是在内网下完成的,在外网请求的是代理服务器地址监听的是9000端口,再由代理服务器向后端服务器发送请求 #均衡负载,测试工具:apache-jmeter-5.2.1 upstream GQWcf { #代理名称,下面是两台轮询地址如果与一台服务器 阅读全文
posted @ 2020-05-21 18:28 WuXinheng 阅读(372) 评论(0) 推荐(0)