亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

FreeMarker標簽怎么使用

發布時間:2022-01-19 17:21:43 來源:億速云 閱讀:266 作者:iii 欄目:開發技術

本篇內容介紹了“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標簽怎么使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

盘山县| 嘉定区| 晋州市| 兰西县| 信阳市| 通化市| 宣恩县| 锦州市| 乌拉特中旗| 通城县| 西平县| 即墨市| 抚宁县| 临泽县| 武陟县| 临澧县| 巨野县| 营口市| 虹口区| 本溪市| 德江县| 讷河市| 邯郸县| 镇康县| 双牌县| 安图县| 延安市| 石狮市| 安岳县| 邹平县| 章丘市| 安陆市| 罗源县| 大宁县| 双辽市| 岱山县| 天津市| 修文县| 随州市| 临猗县| 旺苍县|