您好,登錄后才能下訂單哦!
本篇內容介紹了“FreeMarker標簽怎么使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
在前臺模板使用FreeMarker標簽獲取數據。
package com.jspxcms.plug.web.directive; /** * FreeMarker標簽類需實現TemplateDirectiveModel接口 */ public class ResumeListDirective implements TemplateDirectiveModel { public static final String SITE_ID = "siteId"; public void execute(Environment env, Map params, TemplateModel[] loopVars, TemplateDirectiveBody body) throws TemplateException, IOException { // 使用標簽時,返回變量必須存在,如[@ResumeList; result]...[/@ResumeList]中分號后的result。 if (loopVars.length < 1) { throw new TemplateModelException("Loop variable is required."); } // 標簽體必須存在,即[@ResumeList; list]...[/@ResumeList]中間的部分。 if (body == null) { throw new RuntimeException("missing body"); } // 獲取標簽參數,如[@ResumeList siteId='123'; list]...[/@ResumeList]中的123。 Integer[] siteId = Freemarkers.getIntegers(params, SITE_ID); if (siteId == null && params.get(SITE_ID) == null) { // 如果沒有傳入siteId這個參數,則獲取當前站點的ID。 siteId = new Integer[]{ForeContext.getSiteId(env)}; } Sort defSort = new Sort(Direction.DESC, "creationDate", "id"); Limitable limitable = Freemarkers.getLimitable(params, defSort); List<Resume> list = service.findList(siteId, limitable); // 將獲取的數據放到返回變量里。 loopVars[0] = env.getObjectWrapper().wrap(list); // 執行標簽體。 body.render(env.getOut()); } @Autowired private ResumeService service; }
FreeMarker標簽類需要在/src/main/resources/conf/plugin/plug/context.xml文件中聲明<bean id="PlugResumeList" class="com.jspxcms.plug.web.directive.ResumeListDirective" />
然后在/src/main/resources/conf/plugin/plug/conf.properties文件中加入freemarkerVariables.ResumeList=PlugResumeList。在模板中調用標簽的名稱是ResumeList,而非PlugResumeList。
定義了標簽后,在任意的前臺模板中都可以使用這個標簽,如:
[@ResumeList; result] [#list result as bean] ${bean.name}, ${bean.mobile} [/#list] [/@ResumeList]
“FreeMarker標簽怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。