摘要:
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)