分两种类型

get请求:

instance.interceptors.request.use(  

        config => {
            // 解决get请求无法添加content-type
            if (config.method === "get") {
                config.data = { unused: 0 }; // 这个是关键点,加入这行就可以了,解决get,请求添加不上Content-Type
            }  



post请求:
//关注点:传过去的属性名要是data属性

export function postToFile(url, params) {
    return new Promise((resolve, reject) => {
        instance({
            method: 'post',
            url: url,
            data: params,
            headers: {
                'Content-Type' : 'multipart/form-data'
            }
        })
        .then(res => {
            resolve(res.data);
        })
        .catch(err => {
            reject(err.data)
        })
    });
}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐