先看下这段action代码
[code="java"]public String getDatas() throws Exception {
response.setHeader("Cache-Control", "no-cache");
//程序立即过期
response.setDateHeader("Expires", 0);
//不要让浏览其缓存程序
response.setHeader("Pragma", "no-cache");
response.setCharacterEncoding("UTF-8");
try {
//response.getWriter().print("[{'id':'aa','name':'bb'}]");
//response.getWriter().print("123功");
response.getWriter().print("123");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
response.getWriter().flush();
response.getWriter().close();
}
return null;
}[/code]
这是页面中的
[code="java"]$(document).ready(function(){
$.getJSON("./modul_getDatas",null,function(data){
alert(data);
})
});[/code]
在Action中只有print中返回数字,在前台的回调函数才回提示,其它的都不回提示。网上找了说加上
// response.setContentType("application/json");
// response.setContentType("text/json; charset=utf-8");
可还是没有用,还找到像[url]http://fogandsun.blog.163.com/blog/static/3665887420108152337687/[/url]这个论坛中的。
谁能解释一下为什么换成数字以外的字符就不行了呢?
strut2与jquery中getJSON的问题
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
- aini3456 2011-10-09 17:04关注
将你的//response.getWriter().print("[{'id':'aa','name':'bb'}]");
改为response.getWriter().print("[{\"id\":\"aa\",\"name\":\"bb\"}]"); 或者直接使用json类库生成json对象本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥30 YOLO检测微调结果p为1
- ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
- ¥15 DS18B20内部ADC模数转换器
- ¥15 做个有关计算的小程序
- ¥15 MPI读取tif文件无法正常给各进程分配路径
- ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
- ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
- ¥15 setInterval 页面闪烁,怎么解决
- ¥15 如何让企业微信机器人实现消息汇总整合
- ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题