springboot 针对 vue-resource jsonp 请求的 Uncaught SyntaxError: Unexpected token 问题解决
SpringBoot + Vue
后端使用springboot,前端使用vue-resource jsonp发送请求,如果后端不做特殊处理直接返回,会出现 Uncaught SyntaxError: Unexpected token的错误。这里提供解决方法。
springboot
需要在返回内容前添加 request 中 callback 的值,可以使用 request.getParameter(“callback”) 获得,后面还需要用括号包裹自己需要返回的内容。
@GetMapping("/jsonp")
public void jsonp(HttpServletRequest request, HttpServletResponse response) throws IOException