
第三方对接
微信支付、微信小程序
予她清酒°
我就是我,不一样的烟火。
展开
-
uniapp 微信小程序跳转至其他小程序
uni.navigateToMiniProgram({ appId: '',// 其他小程序APPID path: '',//其他小程序地址 success: res => { // 打开成功 console.log("打开成功", res); }, fail: err => { console.log(err); }});原创 2021-04-16 16:53:48 · 1876 阅读 · 4 评论 -
uni-app 微信小程序获取当前定位
直接贴代码// 位置授权getAuthorizeInfo(){ const that = this; uni.authorize({ scope: 'scope.userLocation', success() { // 允许授权 that.getLocationInfo(); }, fail(){ // 拒绝授权 that.open原创 2021-04-16 16:47:00 · 976 阅读 · 0 评论 -
在微信小程序中访问图片出现403的解决办法
一、使用images.weserv.nl方案直接在原图链接前拼接https://images.weserv.nl/?url=例如:https://images.weserv.nl/?url=https://www.baidu.com/img.jpg二、使用no-referrer方案这种方案不仅针对图片的防盗链,还可以是其他标签在前端页面头部添加一个meta<meta name="referrer" content="no-referrer" />a标签的referr原创 2021-01-09 21:57:43 · 6320 阅读 · 2 评论