#foreach($info in $!result.records)
<tr #if($!velocityCount % 2 == 0) class="sep" #end id="$!info.id"> $!info.id $!info.creatorName $!info.createTime
其中info.questionJson是json字符串,怎么把他解析成对象?
#foreach($info in $!result.records)
<tr #if($!velocityCount % 2 == 0) class="sep" #end id="$!info.id"> $!info.id $!info.creatorName $!info.createTime
其中info.questionJson是json字符串,怎么把他解析成对象?
转换成JSONArray形式 或 JSONObject 格式 在进行遍历
或者 自定义模板解析 方法,专门用来解析 JSON字符串
请采纳