- 不知道算不算个bug,header 属性名会自动大写转小写
在服务端设置自定义Header属性名tokenId,少部分手机小程序返回结果获取时属性名为tokenid,自动有大写转小写了。 刚好发现,只是反馈下,一般用不到。 接口返回tokenId。 wx.request({ url: 'example.php', header: { 'content-type': 'application/json' // 默认值 }, success (res) { console.log(res.header['tokenId']) //部分手机获取失败 console.log(res.header['tokenid']) //部分手机获取成功 } })
2021-11-24 - 网页授权问题 出现跨域问题
公众号网页授权获取openId,出现跨域问题。 如题下错误 Access to XMLHttpRequest at 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx30cd90a0de705a91&redirect_uri=http%3A%2F%2Fic.wikihost.cn%2Fgateway%2FweChat%2Flogin&response_type=code&scope=snsapi_base&state=1000&connect_redirect=1#wechat_redirect' from origin 'http://XXX.XXX.XX' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. 微信公众号也设置了网页授权页面 急求!
2019-06-28