deguodaigou/doc/bin.md
2019-12-23 10:04:09 +08:00

32 lines
739 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# bin.js
## 引入方式
模块导入
## request 方法
对于wx.request()的简单封装
request(object)
返回值类型 promise
除url必须 其余都为可选 详细参数查阅 [微信开发者文档](https://developers.weixin.qq.com/miniprogram/dev/api/network/request/wx.request.html)
```
object
{
url访问地址 必须
method,请求方式
header,附加header头
dataType,返回类型
responseType,类型
complete 成功失败都执行的回调函数
}
```
```
request({
url:"https://api.luyaun.tk/getlist",
method:"GET"
}).then((res)=>{
请求成功执行方法
},(rej)=>{
请求失败执行方法
}).catch((ree)=>{
执行错误时调用方法
})
```