Uncaught SyntaxError: Unexpected token

站长手记 作者: 2024-08-27 17:40:01
页面异步post或者ajax等请求微信授权接口,调试页面报错信息如下Uncaught SyntaxError: Unexpected token

页面异步post或者ajax等请求微信授权接口,调试页面报错信息如下

Uncaught SyntaxError: Unexpected token <


解决方法:

微信授权是涉及到重定向跳转,所以不能用异步请求。

修改成:window.location.href方式去调用后端接口;

通过以下方式跳回页面即可:

response.setContentType("text/html;charset=utf-8");
PrintWriter out = null; try {
    out = response.getWriter();
} catch (IOException e) {
    e.printStackTrace();
}
out .write("<script type='text/javascript'>window.location='"+ymlBean.getDomainResource()+"/systems/mobile/index.html'</script>");
out.close();
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_69670.html
异步post ajax请求