getToken: function() {
console.log('fn:getToken');
var that = this;
new promise((resolve, reject) = >{
console.log('进入Promise方法了');
request({
method: 'GET',
url: wx_gettoken_url
},
function(err, res, body) {
if (res) {
resolve({
isSuccess: true,
data: JSON.parse(body)
});
} else {
console.log(err);
reject({
isSuccess: false,
data: err
});
}
});
}).then(proData =>{
that.getQrcode(proData);
});
}
大神来帮忙看看这段代码有什么问题,一直提示语法有问题,就是找不到。。。