Axios 各种方法传递参数 Demo

 

#### `get` `delete` 方法较为不同

* axios.get(url[, config])
* axios.delete(url[, config])
* axios.post(url[, data[, config]])
* axios.put(url[, data[, config]])
* axios.patch(url[, data[, config]])

#### `get`
```javascript
Axios.get('demo/url', {
    params: {
        id: 123,
        name: 'Henry',
        sex: 1,
        phone: 13333333
    }
})
```
#### `delete`
```javascript
Axios.delete('demo/url', {
    data: {
        id: 123,
        name: 'Henry',
        sex: 1,
        phone: 13333333
    }
})
```

#### `post`
```javascript
Axios.post('demo/url', {
    id: 123,
    name: 'Henry',
    sex: 1,
    phone: 13333333
})
```

#### `put`
```javascript
Axios.put('demo/url', {
    id: 123,
    name: 'Henry',
    sex: 1,
    phone: 13333333
})
```

#### `patch`
```javascript
Axios.patch('demo/url', {
    id: 123,
    name: 'Henry',
    sex: 1,
    phone: 13333333
})
```
 

你可能感兴趣的:(web)