vue 集成axios之后蚯嫌,發(fā)送的post請求默認為payload 方式贬蛙。 如果想改為正常的方式长搀,需要增加headers頭逼侦,并且將發(fā)送是數(shù)據(jù)json格式改為 querystring的方式匿辩。
安裝依賴
`cnpm install qs`
導入依賴
`import Qs from 'qs'`
在需要使用post的地方使用下面的方法,其中postData是一個json對象
```
this.$http({
? ? url: '/api/act/yourApi.api',
? ? method: 'POST',
? ? headers: {
? ? ? ? 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
? ? },
? ? data: Qs.stringify(postData)
})
? ? .then(res => {
? ? ? ? console.log(res);
? ? })
? ? .catch(err => {
? ? ? ? console.log(err);
? ? })
```