数据库中查询到的resultset,如果有层级结构的,怎么转成有层级的json--java 70
比如sql返回以下2条记录:newsIdisShowTitlereadedunReaded101040212030怎么把readed和unReaded构造成json中的r...
比如sql返回以下2条记录:
newsId isShowTitle readed unReaded
1 0 10 40
2 1 20 30
怎么把readed 和unReaded 构造成json中的readStatus。即最终效果格式如下:
{
"code": "0",
"msg": "鎴愬姛",
"data": [
{
"newsId": "1",
"isShowTitle": "0",
"readStatus": {
"readed": "10",
"unReaded": "40"
}
},
{
"newsId": "2",
"isShowTitle": "1",
"readStatus": {
"readed": "20",
"unReaded": "30"
}
}
]
}
我目前只是学会了将记录转换成这种的:
{
"newsId": "2",
"isShowTitle": "1",
"readed": "20",
"unReaded": "30"
}
上面那种不知道怎么搞。
谢谢了。 展开
newsId isShowTitle readed unReaded
1 0 10 40
2 1 20 30
怎么把readed 和unReaded 构造成json中的readStatus。即最终效果格式如下:
{
"code": "0",
"msg": "鎴愬姛",
"data": [
{
"newsId": "1",
"isShowTitle": "0",
"readStatus": {
"readed": "10",
"unReaded": "40"
}
},
{
"newsId": "2",
"isShowTitle": "1",
"readStatus": {
"readed": "20",
"unReaded": "30"
}
}
]
}
我目前只是学会了将记录转换成这种的:
{
"newsId": "2",
"isShowTitle": "1",
"readed": "20",
"unReaded": "30"
}
上面那种不知道怎么搞。
谢谢了。 展开
1个回答
展开全部
前台 aspx
<td> <%# GetText(DataBinder.Eval(Container.DataItem, "auditflag").ToString()) %> </td>
后台aspx.cs
protected string GetText(string auditflag)
{
switch(auditflag)
{
case 0: return "内容不完整";
case 1: return "待审核";
case 2: return "审核未通过";
case 3: return "审核通过";
}
return string.Empty;
<td> <%# GetText(DataBinder.Eval(Container.DataItem, "auditflag").ToString()) %> </td>
后台aspx.cs
protected string GetText(string auditflag)
{
switch(auditflag)
{
case 0: return "内容不完整";
case 1: return "待审核";
case 2: return "审核未通过";
case 3: return "审核通过";
}
return string.Empty;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询