亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? spring.ftl

?? anewssystem新聞發布系統集成使用了spring hibernate freemarker EXTJS等開源框架 可以作為學習參考
?? FTL
字號:
<#ftl strip_whitespace=true><#-- * spring.ftl * * This file consists of a collection of FreeMarker macros aimed at easing * some of the common requirements of web applications - in particular * handling of forms. * * Spring's FreeMarker support will automatically make this file and therefore * all macros within it available to any application using Spring's * FreeMarkerConfigurer. * * To take advantage of these macros, the "exposeSpringMacroHelpers" property * of the FreeMarker class needs to be set to "true". This will expose a * RequestContext under the name "springMacroRequestContext", as needed by * the macros in this library. * * @author Darren Davison * @author Juergen Hoeller * @since 1.1 --><#-- * message * * Macro to translate a message code into a message. --><#macro message code>${springMacroRequestContext.getMessage(code)}</#macro><#-- * messageText * * Macro to translate a message code into a message, * using the given default text if no message found. --><#macro messageText code, text>${springMacroRequestContext.getMessage(code, text)}</#macro><#-- * messageArgs * * Macro to translate a message code with arguments into a message. --><#macro messageArgs code, args>${springMacroRequestContext.getMessage(code, args)}</#macro><#-- * messageArgsText * * Macro to translate a message code with arguments into a message, * using the given default text if no message found. --><#macro messageArgsText code, args, text>${springMacroRequestContext.getMessage(code, args, text)}</#macro><#-- * theme * * Macro to translate a theme message code into a message. --><#macro theme code>${springMacroRequestContext.getThemeMessage(code)}</#macro><#-- * themeText * * Macro to translate a theme message code into a message, * using the given default text if no message found. --><#macro themeText code, text>${springMacroRequestContext.getThemeMessage(code, text)}</#macro><#-- * themeArgs * * Macro to translate a theme message code with arguments into a message. --><#macro themeArgs code, args>${springMacroRequestContext.getThemeMessage(code, args)}</#macro><#-- * themeArgsText * * Macro to translate a theme message code with arguments into a message, * using the given default text if no message found. --><#macro themeArgsText code, args, text>${springMacroRequestContext.getThemeMessage(code, args, text)}</#macro><#-- * url * * Takes a relative URL and makes it absolute from the server root by * adding the context root for the web application. --><#macro url relativeUrl>${springMacroRequestContext.getContextPath()}${relativeUrl}</#macro><#-- * bind * * Exposes a BindStatus object for the given bind path, which can be * a bean (e.g. "person") to get global errors, or a bean property * (e.g. "person.name") to get field errors. Can be called multiple times * within a form to bind to multiple command objects and/or field names. * * This macro will participate in the default HTML escape setting for the given * RequestContext. This can be customized by calling "setDefaultHtmlEscape" * on the "springMacroRequestContext" context variable, or via the * "defaultHtmlEscape" context-param in web.xml (same as for the JSP bind tag). * Also regards a "htmlEscape" variable in the namespace of this library. * * Producing no output, the following context variable will be available * each time this macro is referenced (assuming you import this library in * your templates with the namespace 'spring'): * *   spring.status : a BindStatus instance holding the command object name, *   expression, value, and error messages and codes for the path supplied * * @param path : the path (string value) of the value required to bind to. *   Spring defaults to a command name of "command" but this can be overridden *   by user config. --><#macro bind path>    <#if htmlEscape?exists>        <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#else>        <#assign status = springMacroRequestContext.getBindStatus(path)>    </#if>    <#-- assign a temporary value, forcing a string representation for any    kind of variable. This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * bindEscaped * * Similar to spring:bind, but takes an explicit HTML escape flag rather * than relying on the default HTML escape setting. --><#macro bindEscaped path, htmlEscape>    <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#-- assign a temporary value, forcing a string representation for any    kind of variable. This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * formInput * * Display a form input field of type 'text' and bind it to an attribute * of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formInput path attributes="" fieldType="text">    <@bind path/>    <input type="${fieldType}" id="${status.expression}" name="${status.expression}" value="<#if fieldType!="password">${stringStatusValue}</#if>" ${attributes}<@closeTag/></#macro><#-- * formPasswordInput * * Display a form input field of type 'password' and bind it to an attribute * of a command or bean. No value will ever be displayed. This functionality * can also be obtained by calling the formInput macro with a 'type' parameter * of 'password'. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formPasswordInput path attributes="">    <@formInput path, attributes, "password"/></#macro><#-- * formHiddenInput * * Generate a form input field of type 'hidden' and bind it to an attribute * of a command or bean. This functionality can also be obtained by calling * the formInput macro with a 'type' parameter of 'hidden'. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formHiddenInput path attributes="">    <@formInput path, attributes, "hidden"/></#macro><#-- * formTextarea * * Display a text area and bind it to an attribute of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formTextarea path attributes="">    <@bind path/>    <textarea id="${status.expression}" name="${status.expression}" ${attributes}>${stringStatusValue}</textarea></#macro><#-- * formSingleSelect * * Show a selectbox (dropdown) input element allowing a single value to be chosen * from a list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formSingleSelect path options attributes="">    <@bind path/>    <select id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <option value="${value?html}"<@checkSelected value/>>${options[value]?html}</option>        </#list>    </select></#macro><#-- * formMultiSelect * * Show a listbox of options allowing the user to make 0 or more choices from * the list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formMultiSelect path options attributes="">    <@bind path/>    <select multiple="multiple" id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <#assign isSelected = contains(status.value?default([""]), value)>        <option value="${value?html}"<#if isSelected> selected="selected"</#if>>${options[value]?html}</option>        </#list>    </select></#macro><#-- * formRadioButtons * * Show radio buttons. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option. Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formRadioButtons path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <#assign id="${status.expression}${value_index}">    <input type="radio" id="${id}" name="${status.expression}" value="${value?html}"<#if stringStatusValue == value> checked="checked"</#if> ${attributes}<@closeTag/>    <label for="${id}">${options[value]?html}</label>${separator}    </#list></#macro><#-- * formCheckboxes * * Show checkboxes. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option. Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formCheckboxes path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <#assign id="${status.expression}${value_index}">    <#assign isSelected = contains(status.value?default([""]), value)>    <input type="checkbox" id="${id}" name="${status.expression}" value="${value?html}"<#if isSelected> checked="checked"</#if> ${attributes}<@closeTag/>    <label for="${id}">${options[value]?html}</label>${separator}    </#list>    <input type="hidden" name="_${status.expression}" value="on"/></#macro><#-- * showErrors * * Show validation errors for the currently bound field, with * optional style attributes. * * @param separator the html tag or other character list that should be used to *    separate each option. Typically '<br>'. * @param classOrStyle either the name of a CSS class element (which is defined in *    the template or an external CSS file) or an inline style. If the value passed in here *    contains a colon (:) then a 'style=' attribute will be used, else a 'class=' attribute *    will be used.--><#macro showErrors separator classOrStyle="">    <#list status.errorMessages as error>    <#if classOrStyle == "">        <b>${error}</b>    <#else>        <#if classOrStyle?index_of(":") == -1><#assign attr="class"><#else><#assign attr="style"></#if>        <span ${attr}="${classOrStyle}">${error}</span>    </#if>    <#if error_has_next>${separator}</#if>    </#list></#macro><#-- * checkSelected * * Check a value in a list to see if it is the currently selected value. * If so, add the 'selected="selected"' text to the output. * Handles values of numeric and string types. * This function is used internally but can be accessed by user code if required. * * @param value the current value in a list iteration--><#macro checkSelected value>    <#if stringStatusValue?is_number && stringStatusValue == value?number>selected="selected"</#if>    <#if stringStatusValue?is_string && stringStatusValue == value>selected="selected"</#if></#macro><#-- * contains * * Macro to return true if the list contains the scalar, false if not. * Surprisingly not a FreeMarker builtin. * This function is used internally but can be accessed by user code if required. * * @param list the list to search for the item * @param item the item to search for in the list * @return true if item is found in the list, false otherwise--><#function contains list item>    <#list list as nextInList>    <#if nextInList == item><#return true></#if>    </#list>    <#return false></#function><#-- * closeTag * * Simple macro to close an HTML tag that has no body with '>' or '/>', * depending on the value of a 'xhtmlCompliant' variable in the namespace * of this library.--><#macro closeTag>    <#if xhtmlCompliant?exists && xhtmlCompliant>/><#else>></#if></#macro>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品国产福利| 欧美三级视频在线观看| 91亚洲精品久久久蜜桃网站 | 日本韩国欧美一区二区三区| 欧美成人国产一区二区| 亚洲精品国产精华液| 国产精品一级二级三级| 欧美福利电影网| 日本电影欧美片| 日韩一区二区三区在线| 亚洲色图在线看| 粉嫩欧美一区二区三区高清影视| 欧美一区二区精品| 亚洲一区二区三区三| 91麻豆成人久久精品二区三区| 精品国产sm最大网站免费看| 日韩精品一级中文字幕精品视频免费观看| 国产99久久久精品| 国产欧美va欧美不卡在线| 国产一区二区不卡在线| 精品久久久久一区二区国产| 免费观看一级特黄欧美大片| 欧美精品久久99久久在免费线| 亚洲在线免费播放| 91丨porny丨中文| 亚洲欧美一区二区三区孕妇| 99久久久久久| 亚洲欧美日韩一区二区三区在线观看| av亚洲精华国产精华精华| 午夜精品成人在线| 91久久香蕉国产日韩欧美9色| 国产精品传媒在线| 色婷婷久久综合| 一区二区三区精品在线观看| 91国模大尺度私拍在线视频| 亚洲免费电影在线| 欧美日韩亚洲综合一区二区三区| 午夜一区二区三区视频| 欧美日韩和欧美的一区二区| 手机精品视频在线观看| 日韩午夜激情视频| 国产一区二区调教| 亚洲国产精品99久久久久久久久| 成人高清视频在线观看| 亚洲视频一区在线| 欧美视频一区在线观看| 奇米精品一区二区三区四区| 精品乱人伦一区二区三区| 久久精品av麻豆的观看方式| 26uuu久久天堂性欧美| 成人美女视频在线观看18| 久草中文综合在线| 久久久久久久久一| 成人精品免费看| 一区二区免费在线| 666欧美在线视频| 国产精品一区二区x88av| 亚洲欧洲一区二区三区| 欧美日韩不卡一区二区| 久草中文综合在线| 18成人在线视频| 91精品国产乱| 成人精品国产免费网站| 性做久久久久久久免费看| 久久久精品综合| 欧美中文字幕一区二区三区亚洲| 久久 天天综合| 亚洲一区二区三区国产| 精品国产乱码久久久久久浪潮| 92精品国产成人观看免费 | 日本久久一区二区| 日韩av一区二| 亚洲国产毛片aaaaa无费看| 偷拍一区二区三区| 久久精品人人做人人爽人人| 日本福利一区二区| 国产一区二区三区在线观看免费| 亚洲精品日日夜夜| 久久精品网站免费观看| 欧美性一区二区| 成人一道本在线| 久久99久久精品| 亚洲综合成人在线| 国产蜜臀av在线一区二区三区| 欧美精品第一页| 97久久精品人人澡人人爽| 国产一区二区不卡在线| 日韩av一区二区在线影视| 自拍偷拍欧美激情| 国产日韩欧美制服另类| 欧美一区欧美二区| 欧美视频在线播放| 91国偷自产一区二区三区观看| 成人涩涩免费视频| 国产乱人伦偷精品视频免下载| 视频在线观看91| 国产成人av自拍| 3751色影院一区二区三区| 成人h版在线观看| 激情另类小说区图片区视频区| 午夜精品福利一区二区蜜股av| 亚洲免费观看高清完整版在线 | 欧美裸体bbwbbwbbw| 97国产一区二区| 91视频在线看| 99精品视频在线播放观看| 风间由美一区二区三区在线观看 | 日本人妖一区二区| 亚洲成av人片在线观看无码| 亚洲精品日日夜夜| 一区二区在线观看视频| 亚洲精品视频在线观看网站| 爽爽淫人综合网网站| 国产乱人伦精品一区二区在线观看| 污片在线观看一区二区| 亚洲午夜在线视频| 一区二区在线观看不卡| 亚洲另类在线制服丝袜| 亚洲伦在线观看| 亚洲精品成人少妇| 一区二区久久久久| 亚洲成a人片在线观看中文| 亚洲成av人片在线观看无码| 亚洲大片精品永久免费| 日韩av电影免费观看高清完整版在线观看| 亚洲成人av在线电影| 肉色丝袜一区二区| 激情另类小说区图片区视频区| 国产真实乱偷精品视频免| 国产永久精品大片wwwapp| 国产精品综合在线视频| 成人精品免费看| 在线观看av一区二区| 51精品国自产在线| 日韩精品一区二区三区蜜臀| 国产午夜精品一区二区三区四区| 国产精品传媒在线| 香蕉乱码成人久久天堂爱免费| 麻豆成人综合网| 成人精品一区二区三区中文字幕| 在线免费一区三区| 日韩一区二区在线看| 久久久久成人黄色影片| 玉米视频成人免费看| 日本特黄久久久高潮| 成人综合激情网| 欧美人动与zoxxxx乱| 久久久精品天堂| 偷拍与自拍一区| 99久久免费视频.com| 欧美一区二区在线免费观看| 国产精品成人一区二区三区夜夜夜| 香蕉久久夜色精品国产使用方法 | 精品一区二区三区免费毛片爱| www.亚洲激情.com| 欧美一区二区在线免费播放| 亚洲色图丝袜美腿| 国内精品国产成人国产三级粉色| 日本高清成人免费播放| 26uuu另类欧美| 日韩不卡一二三区| 99v久久综合狠狠综合久久| 日韩美女视频在线| 亚洲韩国一区二区三区| 不卡影院免费观看| 久久毛片高清国产| 日韩—二三区免费观看av| 日本韩国一区二区三区视频| 久久久久久久久97黄色工厂| 日本中文字幕一区二区有限公司| 99精品欧美一区| 国产欧美日韩不卡| 国产麻豆成人传媒免费观看| 欧美日韩一区二区不卡| 中文字幕一区二区三区在线不卡 | 国产成人在线看| 69p69国产精品| 亚洲一区二区欧美日韩| 成人污污视频在线观看| 精品91自产拍在线观看一区| 日日噜噜夜夜狠狠视频欧美人 | 欧美日韩亚洲另类| 亚洲图片欧美激情| www.欧美色图| 欧美激情自拍偷拍| 国产黄人亚洲片| 久久精品男人天堂av| 免费在线观看一区| 91精品国产综合久久精品app | 亚洲另类在线制服丝袜| jizz一区二区| 亚洲欧洲精品一区二区三区不卡| 国产一区二区三区精品欧美日韩一区二区三区| 欧美日韩国产电影| 午夜视频一区在线观看| 欧美在线色视频| 日韩精品91亚洲二区在线观看| 91精品国产综合久久福利| 免费观看成人鲁鲁鲁鲁鲁视频| 在线不卡a资源高清|