const instance = axios.create({
    baseURL: "https://api.test.com",
    //设置axios为form-data
    headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
    transformRequest: [function (data) {
        let ret = ''
        for (let it in data) {
            ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
        }
        return ret
    }]
})

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注