小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.reques如何同步请求
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
搜索 微信小程序promise
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,我想用promise让wx.request同步,代码如下,但是结果 aaaaa log先输出了,明显仍旧是异步,没有同步,我想知道我哪儿错了,求指点。
onLoad() {
var that = this;
that.getPromiseRequest().then(function(res){
that.setData({
fileCont: res
})
console.log('res is'+res) // 第一次的log
。。。
console.log('aaaaa') //第二次的log
}
,
getPromiseRequest() {
return new Promise(function (resolve, reject) {
wx.request({
url: 'xxx',//请求地址
header: {//请求头
"Content-Type": "application/x-www-form-urlencoded"
},
method: "GET",//get为默认方法/POST
success: function (res) {
resolve(res.data);//将结果往上抛
fail: function (err) { },//请求失败
complete: function () { }//请求完成后执行的函数
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
搜索 微信小程序promise
你好,我想用promise让wx.request同步,代码如下,但是结果 aaaaa log先输出了,明显仍旧是异步,没有同步,我想知道我哪儿错了,求指点。
onLoad() {
var that = this;
that.getPromiseRequest().then(function(res){
that.setData({
fileCont: res
})
console.log('res is'+res) // 第一次的log
})
。。。
console.log('aaaaa') //第二次的log
}
,
getPromiseRequest() {
return new Promise(function (resolve, reject) {
wx.request({
url: 'xxx',//请求地址
header: {//请求头
"Content-Type": "application/x-www-form-urlencoded"
},
method: "GET",//get为默认方法/POST
success: function (res) {
resolve(res.data);//将结果往上抛
},
fail: function (err) { },//请求失败
complete: function () { }//请求完成后执行的函数
})
})
},