- https://api.weixin.qq.com/cgi-bin/user
js后台请求这个接口返回 48001? let obj = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=私人的appid&secret=私人的",{ // 必须指定 method method: 'GET', // 通过 contentType 告诉 HttpClient 以 JSON 格式发送 contentType: 'json', // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body dataType: 'json', }) console.log(obj) let userInfo = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/user/info?access_token="+obj.data.access_token +"&openid="+"获取的openid"+"&lang=zh_CN",{ method: 'GET', // 通过 contentType 告诉 HttpClient 以 JSON 格式发送 contentType: 'json', // 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body dataType: 'json', }) console.log(userInfo) } 返回结果 data: { errcode: 48001, errmsg: 'api unauthorized hint: [4VKB_a03071503!]' },
2019-04-29 - 小程序获取手机型号的问题
wx.getSystemInfo这个api 中的获取的model 字段是否有一个比较全的列表??或者这个API获取的型号跟安卓关于手机里面的model是否是一致的??
2018-01-05 - ios10.0.1调用系统API 无法回调的promise then中
new Promise(resove=>{ console.log(66666) wx.getSystemInfo({ success: function(res) { console.log(777777) console.log(res) resove(res) 这里显示成功 }, }) }).then(res=>{ //这里没有回调 console.log(res) }).catch(res=>{ }) [图片]
2018-01-02 - drawImage 掉帧
在canvas中画图片、添加touchMove监听,手指移动canvas跟着平移,然后循环画图片,在iphone7plus 上掉帧很厉害,给人一种卡顿的感觉,而Android却不会?是什么原因呢? 循环代码如下: picCtx.translate(objPic.movePoint.x, objPic.movePoint.y) picCtx.rotate(objPic.rotate); picCtx.drawImage(objPic.imgPath, objPic.deletePoint.x, objPic.deletePoint.y, objPic.imgSizePoint.width, objPic.imgSizePoint.height) picCtx.draw()
2017-12-25 - canvas.arc 划弧度ios和Android显示不一样
从0.75 * Math.PI 画到 0.25 * Math.PI ios和android真机显示的弧度是不一样的、ios机型为iphone7Plus android机型为魅族pro6
2017-12-01