post提交數(shù)據(jù)的四種編碼方式
1.application/x-www-form-urlencoded
這應(yīng)該是最常見的post編碼方式,一般的表單提交默認(rèn)以此方式提交蠕蚜。大部分服務(wù)器語(yǔ)言對(duì)這種方式都有很好的支持昵慌。在PHP中棍苹,可以用$_POST[“key”]的方式獲取到key的值兴垦,在node中我們可以使用querystring中間件對(duì)參數(shù)進(jìn)行分離
app.post("/server",function(req,res){
req.on("data",function(data){
let key=querystring.parse(decodeURIComponent(data)).key;
console.log("querystring:"+key)
});
});
2.multipart/form-data
這也是一種比較常見的post數(shù)據(jù)格式,我們用表單上傳文件時(shí)档痪,必須使form表單的enctype屬性或者ajax的contentType參數(shù)等于multipart/form-data涉枫。使用這種編碼格式時(shí)發(fā)送到后臺(tái)的數(shù)據(jù)長(zhǎng)得像這樣子
不同字段以--boundary
開始,接著是內(nèi)容描述信息腐螟,最后是字段具體內(nèi)容。如果傳輸?shù)氖俏募€要包含文件名和文件類型信息
3.application/json
axios默認(rèn)提交就是使用這種格式惜论。如果使用這種編碼方式裹芝,那么傳遞到后臺(tái)的將是序列化后的json字符串店溢。我們可以將application/json與application/x-www-form-urlencoded發(fā)送的數(shù)據(jù)進(jìn)行比較
首先是application/json:
接著是application/x-www-form-urlencoded:
這里可以明顯看出application/x-www-form-urlencoded上傳到后臺(tái)的數(shù)據(jù)是以key-value形式進(jìn)行組織的,而application/json則直接是個(gè)json字符串。如果在處理application/json時(shí)后臺(tái)還是采用對(duì)付application/x-www-form-urlencoded的方式將會(huì)產(chǎn)生問題。例如后臺(tái)node.js依然采用之前對(duì)付application/x-www-form-urlencoded的方法侧戴,那么querystring.parse(decodeURIComponent(data))
之后得到的數(shù)據(jù)是這樣子的
這個(gè)時(shí)候再querystring.parse(decodeURIComponent(data)).key
只能獲取到undefined
4.text/xml
剩下的一種編碼格式是text/xml,這種格式我沒有怎么使用過
解決方法
既然我們知道axios post方法默認(rèn)使用application/json格式編碼數(shù)據(jù)跌宛,那么解決方案就有兩種酗宋,一是后臺(tái)改變接收參數(shù)的方法,另一種則是將axios post方法的編碼格式修改為application/x-www-form-urlencoded疆拘,這樣就不需要后臺(tái)做什么修改了蜕猫。
先來看第一種解決方法
vue組件中,axios發(fā)送post請(qǐng)求的代碼如下
this.$axios({
method:"post",
url:"/api/haveUser",
data:{
name:this.name,
password:this.password
}
}).then((res)=>{
console.log(res.data);
})
此時(shí)控制臺(tái)Network Headers里面的信息是這樣子的
后臺(tái)接收數(shù)據(jù)需要依賴body-parser
中間件哎迄,我們事先裝好回右,接著在后臺(tái)代碼中引用body-parser
這張截圖中,發(fā)揮作用的代碼僅僅是const bodyParser=require("body-parser");
接下來在路由中使用body-parser
app.post("/api/haveUser",bodyParser.json(),function(req,res){
console.log(req.body);
let haveUser=require("../api/server/user.js");
haveUser(req.body.name,req.body.password,res);
});
這時(shí)芬失,當(dāng)前臺(tái)發(fā)送post請(qǐng)求之后楣黍,后臺(tái)控制臺(tái)中就會(huì)打印出req.body
這時(shí)匾灶,通過req.body.name
或者req.body.password
就能拿到對(duì)應(yīng)的值棱烂。
這種方法比較簡(jiǎn)單,也不需要前臺(tái)做過多修改阶女,推薦使用這種方法颊糜。
第二種解決方法,具體操作如下
前端
this.$axios({
method:"post",
url:"/api/haveUser",
headers:{
'Content-type': 'application/x-www-form-urlencoded'
},
data:{
name:this.name,
password:this.password
},
transformRequest: [function (data) {
let ret = ''
for (let it in data) {
ret += encodeURIComponent(it) + '=' + encodeURIComponent(data[it]) + '&'
}
return ret
}],
}).then((res)=>{
console.log(res.data);
})
其中發(fā)揮關(guān)鍵作用的是headers與transformRequest秃踩。其中 headers
是設(shè)置即將被發(fā)送的自定義請(qǐng)求頭衬鱼。 transformRequest
允許在向服務(wù)器發(fā)送前,修改請(qǐng)求數(shù)據(jù)憔杨。這樣操作之后鸟赫,后臺(tái)querystring.parse(decodeURIComponent(data))
獲取到的就是類似于{ name: 'w', password: 'w' }
的對(duì)象。后臺(tái)代碼如下
app.post("/api/haveUser",function(req,res){
let haveUser=require("../api/server/user.js");
req.on("data",function(data){
let name=querystring.parse(decodeURIComponent(data)).name;
let password=querystring.parse(decodeURIComponent(data)).password;
console.log(name,password)
haveUser(name,password,res);
});
});
這種方法明顯就要比第一種麻煩一點(diǎn)消别,但不需要后臺(tái)做過多處理抛蚤。所以具體操作還是得根據(jù)實(shí)際情況決定。