json传值以及ajax接收
Posted 根目录97
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json传值以及ajax接收相关的知识,希望对你有一定的参考价值。
一开始进入公司,做起项目来比较不知所措,现在一个月过去了,越来越得心应手,下面是json向前端传值以及前端ajax接收,给自己记下也分享给大家。
这是两个类型不同的json与ajax的数据交互(集合、类对象)
JsonConfig jsonConfig = new JsonConfig(); //lenient
jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
JSONArray json = JSONArray.fromObject(listPm, jsonConfig);
outJSONData(json);
Blog b=(Blog) bgdao.findBlog(Integer.parseInt(id));
b.setBbsCenterStr( new String(b.getBbsCenter()));
JSONArray json = JSONArray.fromObject(b);
outJSONData(json);
ajax接收:
dataType:"json",
success: function(data) {
var crmhtmlg = ‘‘;
$.each(data,function(i,comment){
crmHtmlg+=‘<tr>‘
+‘<td colspan="2" style="text-align: center;color: black;font-size: 18px;font-weight:bold;">‘+comment.bbsTitle+‘</td>‘
+‘</tr>‘
});
$(‘#bowenchakan‘).html(crmHtmlg);
以上是关于json传值以及ajax接收的主要内容,如果未能解决你的问题,请参考以下文章
ajax传值php页面接收处理为json 有值 但返回为null 求解
jsp a标签传值到action中,action接收不到传值