通过List<Notice> noticelist = Notice.dao.find("select * from notice");
获得查询结果(正常获取)后,put进json后,JSON中put进去的只有5行空值,有点无奈。。。其他的元素put进正常显示,尝试了多种转换方法好像没用,不知道什么原因,求大佬指点迷津,谢谢。
后:
String noticelistsql="select id,title from notice";
List rclist=Db.find(noticelistsql);
renderJson(rclist);
render("welcome.html");
前:
#for(x : rclist)
#(x.id) #(x.title)
#end
模板引擎似乎不能识别指令,是我语法还是哪儿出了问题呢