Form Data入参格式

Form Data入参格式
这种请求接口的入参格式,前端使用vue搭配axios如何做到,求解


回答:

目测这是multipart吧,可以这么写:

let formData = new FormData();

formData.append('test.A', 'test1');

formData.append('test.B', 'test2');

axios({

method: 'post',

url: 'http://example.com/testpath',

data: formData,

headers: {

'Content-Type': 'multipart/form-data'

}

}).then(function (res) {

console.log(res)

})

希望能帮助到你。

以上是 Form Data入参格式 的全部内容, 来源链接: utcz.com/p/936247.html

回到顶部