欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Content-Type为 application/x-www-form-urlencoded格式data结构

程序员文章站 2022-03-03 08:32:29
...
export function fetch(requestUrl, params = '', headers = { 'Content-Type': 'application/x-www-form-urlencoded' }) {
    return axios({
        url: requestUrl,
        method: 'post',
        data: params,
        headers: headers,
        timeout:1000*60*60
    })
};

 一开始这么写会出现这个以下问题,多了个冒号


Content-Type为 application/x-www-form-urlencoded格式data结构
            
    
    博客分类: Web前端VUE项目部署VUE node.js 前后端分离  

 

正常写法是引入qs:

import axios from 'axios'
// Content-Type = application/x-www-form-urlencoded 需导入qs才能获取参数
var qs = require('qs');

// 封装post请求
export function fetch(requestUrl, params = '', headers = { 'Content-Type': 'application/x-www-form-urlencoded' }) {
    return axios({
        url: requestUrl,
        method: 'post',
        data: qs.stringify(params),
        headers: headers,
        timeout:1000*60*60
    })
};

 

  • Content-Type为 application/x-www-form-urlencoded格式data结构
            
    
    博客分类: Web前端VUE项目部署VUE node.js 前后端分离  
  • 大小: 5.9 KB