vue-request
install
npm i vue-request
usage
this.$http.get('/posts/:id', { urlParams: { id: 1 } }).then(res => console.log(res.data))
this.$http.delete('/posts/:id', { urlParams: { id: 1 } }).then(res => console.log(res.data))
this.$http.post('/posts', { userId: '123' }).then(res => console.log(res.data))
this.$http.get('/posts/:id(\\d+)', { urlParams: { id: 'ddd' } }).then(res => console.log(res.data))
this.$http.get('/posts', { params: { userId: 1 } }).then(res => console.log(res.data))
this.$http.post('/posts', { userId: 'xiadd' }, { headers: { 'Content-Type': 'multipart/form-data' } }).then(res => console.log(res.data))