Appearance
uuhttp
get(url[, config])
参数
参数 | 说明 |
---|---|
url | url |
config | config |
返回值
object
代码
javascript
const response = uuhttp.get('https://www.baidu.com', {
async: false,
headers: {},
success: function(data) { },
error: function(message, status) { }
})
post(url, body[, config])
参数
参数 | 说明 |
---|---|
url | url |
body | body |
config | config |
返回值
object
代码
javascript
const response = uuhttp.post('https://www.baidu.com/login', {
username: '123',
password: 'pwd123'
})
cretae(config)
创建新的 http 客户端
参数
参数 | 说明 |
---|---|
config | config |
返回值
object
代码
javascript
const uuhttp = require('uuhttp').cretae({
timeout: 5000, // 5秒
baseUrl: 'http://localhost:8080', // 基础路径
contentType: 'application/json;charset=UTF-8'
})