设置axios为form-data

    技术2022-07-11  82

    设置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 }]

    写在core.js core文件参考 axios的封装

    Processed: 0.012, SQL: 12