Home  >  Article  >  Web Front-end  >  Handling the problem of passing parameters in post requests through Axios in Vue (detailed tutorial)

Handling the problem of passing parameters in post requests through Axios in Vue (detailed tutorial)

亚连
亚连Original
2018-06-01 11:39:502705browse

Below I will share with you an article that solves the problem of vue processing axios post request parameters. It has a good reference value and I hope it will be helpful to everyone.

Many friends will definitely use axios requests when using vue, including now that vux already comes with axios, and its usage is also very simple. The documentation is relatively clear, but when we use post submission However, I found that sometimes the problem of parameters not being sent to the server occurs. I remember that the document also mentioned the occurrence of this situation. Here I record the settings so that they can be used directly when needed next time. No need to dig through old code.

The following is how to use it in vux. It is very simple. Just place the code in main.js. If you only use vue and install axios directly, the setting method will be the same and will not be recorded.

import qs from 'qs'
import es6Promise from 'es6-promise'
import { AjaxPlugin } from 'vux'
Vue.use(AjaxPlugin)
AjaxPlugin.$http.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'
// POST传参序列化(添加请求拦截器)
AjaxPlugin.$http.interceptors.request.use((config) => {
 // 发送请求之前做某件事
 if (config.method === 'post') {
  config.data = qs.stringify(config.data)
 }
 return config
}, (error) => {
 return error
})

Note: is placed in front of new Vue({})

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future. help.

Related articles:

JavaScript implements blockchain

vue uses facebook twitter to share examples

200 lines of code to implement blockchain Detailed explanation of blockchain examples

The above is the detailed content of Handling the problem of passing parameters in post requests through Axios in Vue (detailed tutorial). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn