嗨,我必须习惯 json
将列表或任何数据放入我使用的对象的键值对中json
。现在请告诉我将该json
对象检索到jsf
视图页面的方式。我无法弄清楚如何获取 json 对象将键值对中的数据包含到 jsf 视图页面中,这是我的代码
jsf BeanManager
import org.json.simple.JSONObject;
class DiaryManager{
private JSONObject jsonObject;
public void setView(){
jsonObject=new JSONObject();
jsonObject.put("aptId", diaryViewBean.getApptid());
jsonObject.put("sessionID", diaryViewBean.getSessionid());
jsonObject.put("startdate", diaryViewBean.getStartDateBlock());
jsonObject.put("event", eventobj);
}
}