请求报错了
为什么报错了:the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is application/x-www-form-urlencoded]
为什么报错了:the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is application/x-www-form-urlencoded]
2019-01-22
单看报错还有你看对应的视频,应该是跨域请求的问题。
看看视频的11:21秒的 @CrossOrigin注释有没有添加两个属性,
还有查看一下前端页面 $.ajax{ 当中 有没有设置 contentType:"application/x-www-form-urlencoded", 以及 xhrFields:{withCredentials:true},
再或者看看后台页面中 Controller -> BaseController 有没有设置
public static final String CONTENT_TYPE_FORMED="application/x-www-form-urlencoded";
以上单纯看错误报告,希望能帮到你~
举报