错误描述:
今天在做 ajax post 提交表单的时候出现了一个问题,后台始终获取不了数据找了半天也没找到原因,因为,坚信自己没错啊,但是看了一些文章之后才反应过来。原来是contentType的问题。
解决方式1:
直接删除contentType,即可解决。此时,使用了contentType的默认格式:application/x-www-form-urlencoded
解决方式2:
设置 contentType: "application/x-www-form-urlencoded",即可解决。
空值.png 解决.png
原因分析:
主要在于搞不清http请求
长知识链接: https://blog.csdn.net/qianxing111/article/details/79356146
网友评论