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

React的qs插件

程序员文章站 2024-03-01 09:01:52
...
npm install qs;

let data= {
           "photo":headFile
        }
axios({
        headers:{'Content-Type':'application/x-www-form-urlencoded'},
        method:'post',
        url:'http://127.0.0.1:8080/update/102/photos',
        data:Qs.stringify(data)
        }).then(res=>{
        console.log(res);