- wx.openLocation打开内置地图,然后点击地图导航app时,中间有做坐标转换吗?
[图片][图片] 这是官方api的调用,使用的坐标是gcj02的坐标系。然后我打开内置地图时,调用起第三方app进行导航,比如百度地图(使用的是bd09坐标系)时,内部会进行坐标转换吗?主要是精确度的问题。
2022-03-04 - 微信网页分享问题
使用的是js-sdk 1.4.0 $.ajax({ type: "get", url: XXXX, dataType: "json", success: function (data) { wx.config({ debug: true, appId: data.result.appId, timestamp: data.result.timestamp, nonceStr: data.result.nonceStr, signature: data.result.signature, jsApiList: ['checkJsApi', 'updateAppMessageShareData', 'updateTimelineShareData'] }); wx.ready(function () { //分享给朋友 wx.updateAppMessageShareData({ title: '【疯抢中..】余杭区儿童联盟千人狂抢!不超值,拿锤砸!手快有!手慢无!', desc: '我刚抢了,你也快来抢吧~~还有红包呢!', link: XXXXX='+Openid, imgUrl: 'https://sjimg.95qy.cn/21?imageView2/1/w/200/h/200/q/85', success:function(){ } }); //分享到朋友圈 wx.updateTimelineShareData({ title: '【疯抢中..】余杭区儿童联盟千人狂抢!不超值,拿锤砸!手快有!手慢无!', link: 'http://XXXXX='+yoayaolaOpenid, imgUrl: 'https://sjimg.95qy.cn/21?imageView2/1/w/200/h/200/q/85', success:function(){ } }); }); wx.error(function (res) { console.log("页面加载异常!" + res.errMsg); }); } }); 微信网页自定义分享 标题 ,内容 ,图片, 进入页面总是提示配置成功 updateAppMessageShareData: fail link must be in js secure domain list 另一个也是提示着 ,公众号里的域名配置都正确的 核对了N边了 ,早些时候 分享没有问题 现在总提示这个 什么原因 大佬们解释一下
2019-06-16 - 小程序云函数中调用new Date().getTime()自动加8小时的问题?
请问在小程序云函数中调用new Date().getTime() new Date('2020/03/06 23:50:22').getTime() 得到:1583538622000;转北京时间:2020年3月7日7时50分22秒 new Date('2020-03-06 23:50:22').getTime() 还是得到:1583538622000;转北京时间:2020年3月7日7时50分22秒 正确应该:1583509822000;转北京时间:2020年3月6日23时50分22秒 请问需要怎么才能获得不自动增加8小时的时间戳
2020-03-07