郎朗坤
vue.js把表单提交到data里:axios({url: '/user',method: 'post',data: {firstName: 'Fred',lastName: 'Flintstone'},transformRequest: [function (data) {// Do whatever you want to transform the datalet ret = ''for (let it in data) {ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'}return ret}],headers: {'Content-Type': 'application/x-www-form-urlencoded'}})