1. 以formdata的方式提交数据
- 最常见的是
const form = new FormData();
form.append("name", name);
form.append("password", encryptor.encrypt(password));
这个时候的请求头是Content-Type: multipart/form-data; 一般用于文件的上传
- Content-Type: application/x-www-form-urlencoded 这种方式提交
const qs = require('qs');
axios.post('/foo', qs.stringify({ 'bar': 123 }));
网友评论