标签:
1.如果页面报不支持写法的错,请查看是否引用了跨js定义的常量。逐步排错。
2.后台返回json要导入如下依赖:
<dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> </dependency>
使用如下:
QtUser qtUser=qtUserService.selectByRecord(uInfo); net.sf.json.JSONObject jsonObject = net.sf.json.JSONObject.fromObject(qtUser); net.sf.json.JSONArray jsonArray = new net.sf.json.JSONArray(); jsonArray.add(jsonObject); return jsonArray.toString();
3.检查是否配置出错,不同的数据源有不同的jar包
4.前台发送数据正常,后台没接收到数据,请检查是否做了如下配置:
<mvc:annotation-driven />
<mvc:default-servlet-handler/>
标签:
原文地址:http://www.cnblogs.com/stuhjf/p/5774282.html