Files
pure-admin-thin/src/utils/http/README.md
xiaoxian521 749633e32c perf: theme
2021-12-24 10:55:59 +08:00

26 lines
394 B
Markdown

## 用法
### Get 请求
```
import { http } from "/@/utils/http";
// params传参
http.request('get', '/xxx', { params: param });
// url拼接传参
http.request('get', '/xxx?message=' + msg);
```
### Post 请求
```
import { http } from "/@/utils/http";
// params传参
http.request('post', '/xxx', { params: param });
// data传参
http.request('post', '/xxx', { data: param });
```