问题模块 框架类型 问题类型 操作系统 工具版本
开发者工具 微信小程序 Bug Windows 1.02.1808080
- 当前 Bug 的表现(可附上截图)
wx.request 为能发起请求 但是放在index.js 文件中则能正常的发起HTTP 请求
如下图 网络中未发出 HTTP 请求
- 预期表现
- 复现路径
- 提供一个最简复现 Demo
使用微信小程序工具 选择 微信小程序模板创建 后新建视图 和相关脚本
在js onLoad 中加入如下代码
var that = this;
wx.request({
url: 'https://douban.uieee.com/v2/movie/top250',
//'https://api.douban.com/v2/movie/top250',
method: "GET",
header: {
'Content-Type': 'application/xml' //'application/json'
},
success: function (res) {
console.log(res.data.subjects);
},
fail: function () {
console.log("douban API ERROR!!!");
}
});
微信小程序开发问题解答
微信小程序开发者回答:
你好,问题未复现。请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
本文网址:http://www.91bianli.com/weixinxiaochengxu/44212.html