Axios 메소드 전송 매개변수

### 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
})

좋은 웹페이지 즐겨찾기