wx-promise-request的使用方法

开源地址:

https://github.com/zhengjunxin/wx-promise-request

wx-promise-request 是对微信小程序wx.request方法的异步封装。

下载wx-promise-request.js

复制到小程序中

在需要使用的js文件中这样操作

import {
request,
setConfig
} from '../../utils/wx-promise-request';
import Promise from 'bluebird';

setConfig({
Promise
})

request({
url: '',
method: 'GET',
data: {
type: 'list',
module: 'wechat/news'
},
header: {
'content-type': 'application/x-www-form-urlencoded',
'Accept': 'application/json'
},
})

.then(function (res) {
console.log(res.data)
}
)