angular2 跨域post请求到springMVC
1.angular使用json格式上传参数,而springMVC使用x-www-form-urlencoded格式获取参数。
采用修改前端的方法进行兼容,body修改为 xx=aa&yy=bb的形式,加入http头 application/x-www-form-urlencoded
const body = 'userId=' + this.userId + '&token=' + thi
原创
2018-01-14 03:01:18 ·
927 阅读 ·
0 评论