我得到了一個要求。我在Web Content Display portlet中添加了兩個文本字段Value
和Key
。 從Web內容顯示Portlet獲取密鑰的價值
現在在portlet中,我從下面的硬代碼中獲得價值。
BasicModel model = (BasicModel)requestContext.getFlowScope().get("BasicModel");
if(model == null){
model = new BasicModel();
}
model.setEmployeeId("AB1223344S");
model.setHireDate("01-Jan-2000");
model.setNiNumber("AB123456S");
model.setDateOfBirth("12-Dec-1980");
model.setBasicForm(new BasicDetailsForm());
}
,但我想要的是從web content
得到各attribute
的value
。像,如果我已經給lfr.intel.empid
作爲key
和ABSD1822D
作爲這樣的添加的網絡內容結構字段中的值。
我們可以像這樣獲取鍵的值。
model.setEmployeeId(lfr.intel.empid);
你爲什麼在這裏使用我們的內容做了嗎?你會詳細說明你的要求嗎? –
@PankajkumarKathiriya如果我可以,我會從老年人的要求。 – Akash