参数已经提交给后端了,但是后端获取接受不了参数

解决方法:

修改请求头Content-type

header:{
	'Content-type':'application/x-www-form-urlencoded'
}
//或者:
header : {  
	'content-type': 'application/x-www-form-urlencoded;charset=utf-8'  
}