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

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

?? spring.ftl

?? 一個用spring技術的航空票務系統
?? FTL
字號:
<#-- * 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><#-- * 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}"<@checkSelected value/>>${options[value]}</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}" <#if isSelected>selected="selected"</#if>>${options[value]}</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>    <input type="radio" id="${status.expression}" name="${status.expression}" value="${value}"        <#if stringStatusValue == value>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${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 isSelected = contains(status.value?default([""]), value)>    <input type="checkbox" id="${status.expression}" name="${status.expression}" value="${value}"        <#if isSelected>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${separator}    </#list></#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一区二区三区免费野_久草精品视频
99久久精品国产麻豆演员表| 精品日韩成人av| 欧美一区三区二区| 国产精品久久久久影院亚瑟| 日韩在线一区二区| 成人99免费视频| 日韩三级视频中文字幕| 亚洲少妇最新在线视频| 狠狠久久亚洲欧美| 欧美日韩国产美女| 中文字幕五月欧美| 国产精品综合久久| 欧美成人精品1314www| 亚洲黄色在线视频| 成人成人成人在线视频| 精品国产乱码久久久久久浪潮| 亚洲一区二区四区蜜桃| 91网上在线视频| 中文字幕欧美三区| 国模冰冰炮一区二区| 91麻豆精品国产综合久久久久久| 亚洲精品水蜜桃| 波多野结衣视频一区| 国产偷v国产偷v亚洲高清| 美女爽到高潮91| 91精品在线一区二区| 午夜日韩在线观看| 欧美精品乱码久久久久久| 亚洲电影中文字幕在线观看| 日本道在线观看一区二区| 中文字幕在线视频一区| 成人av免费在线观看| 国产精品毛片久久久久久| 成人一区二区三区| 亚洲国产精品成人综合| 懂色av一区二区三区免费观看| 久久久www免费人成精品| 久久99精品久久久久久国产越南 | 久久99国产精品久久99 | 国产欧美精品国产国产专区 | 日本欧美一区二区| 欧美精品在欧美一区二区少妇| 亚洲国产成人高清精品| 欧美日韩三级一区二区| 免费在线成人网| 欧美mv和日韩mv国产网站| 久久精品国产久精国产| 日韩欧美国产麻豆| 国产麻豆一精品一av一免费| 国产免费成人在线视频| 色天天综合色天天久久| 亚洲尤物视频在线| 777色狠狠一区二区三区| 韩国v欧美v日本v亚洲v| 国产精品狼人久久影院观看方式| 色婷婷综合视频在线观看| 亚洲成人手机在线| 欧美一区二区三区视频免费| 九九精品一区二区| 亚洲色图一区二区| 制服丝袜国产精品| 成人h动漫精品一区二| 亚洲国产裸拍裸体视频在线观看乱了| 日韩视频一区二区三区在线播放| 国产麻豆精品一区二区| 一区二区三区在线视频观看| 日韩一区二区在线观看| 国v精品久久久网| 亚洲一区二区黄色| 国产欧美综合在线观看第十页| 色中色一区二区| 老司机免费视频一区二区 | 久久久综合视频| 色综合久久综合| 老鸭窝一区二区久久精品| 国产精品久久看| 91精品国产综合久久久久久久久久 | 欧美成人三级电影在线| 99精品欧美一区| 久久se精品一区精品二区| 一区二区三区丝袜| 久久精品欧美一区二区三区不卡| 欧美撒尿777hd撒尿| 成人免费毛片高清视频| 久久99精品久久久久久国产越南 | 一区二区三区日韩| 亚洲国产成人一区二区三区| 日韩一区二区三区四区| 色88888久久久久久影院按摩 | 激情综合一区二区三区| 亚洲一二三区不卡| 国产精品美女久久久久av爽李琼 | 欧美一级一区二区| 91极品美女在线| 成人免费精品视频| 免费人成黄页网站在线一区二区| 亚洲激情五月婷婷| 国产精品久久久久三级| 久久在线观看免费| 日韩午夜电影av| 欧美一区欧美二区| 欧美日韩国产在线播放网站| 色综合久久综合| 成人激情图片网| 国产大陆亚洲精品国产| 国产最新精品免费| 久久精品国产精品亚洲精品| 日韩av电影免费观看高清完整版 | 精品日产卡一卡二卡麻豆| 在线视频一区二区免费| caoporen国产精品视频| 成+人+亚洲+综合天堂| 国产精品888| 国产精品亚洲视频| 国产福利一区二区三区视频在线 | 亚洲视频一区在线| 中文字幕一区二区不卡| 国产精品视频看| 国产精品初高中害羞小美女文| 国产三级精品视频| 中文字幕久久午夜不卡| 国产精品乱码一区二区三区软件| 中文字幕免费一区| 中文字幕欧美一| 亚洲日本中文字幕区| 亚洲女同女同女同女同女同69| 亚洲天堂网中文字| 亚洲国产精品自拍| 蜜桃久久精品一区二区| 久久91精品久久久久久秒播| 国产一区二区三区美女| 国产99一区视频免费| av日韩在线网站| 一本大道久久a久久精品综合| 欧美私人免费视频| 91精品国产综合久久精品图片| 欧美mv日韩mv| 中文字幕亚洲一区二区av在线| 亚洲精品乱码久久久久| 石原莉奈一区二区三区在线观看| 美女网站色91| 波多野结衣欧美| 欧美精品1区2区| 国产视频一区不卡| 一区二区三区四区精品在线视频| 日韩综合一区二区| 国产91丝袜在线播放0| 91小宝寻花一区二区三区| 欧美日韩mp4| 久久网这里都是精品| 一区二区三区四区在线| 久久精品久久久精品美女| 国产精品18久久久久久久久 | 国产色产综合色产在线视频| 国产精品久久久久9999吃药| 亚洲一区二区三区视频在线| 狠狠色丁香久久婷婷综| 色先锋资源久久综合| 欧美xxx久久| 亚洲激情自拍偷拍| 久久99精品久久久久| 一本色道久久加勒比精品| 欧美一区二区黄色| 一区在线中文字幕| 国产在线精品不卡| 欧美日韩一区在线观看| 国产精品色婷婷久久58| 奇米四色…亚洲| 91视视频在线直接观看在线看网页在线看| 538在线一区二区精品国产| 国产精品久久久久7777按摩| 狠狠色丁香久久婷婷综合_中 | 久久国产精品色| 91免费观看在线| 国产日韩欧美一区二区三区综合| 国产亚洲一本大道中文在线| 亚洲一区二区三区四区在线观看| 一区二区在线电影| 久久综合久久久久88| 久久婷婷综合激情| 久久精品国产久精国产爱| 欧美国产日本韩| 日韩欧美一级在线播放| thepron国产精品| 久久精品噜噜噜成人88aⅴ| 《视频一区视频二区| 精品国产一区二区三区四区四| 在线一区二区三区| av在线播放成人| 国产福利视频一区二区三区| 亚洲成在人线免费| 自拍av一区二区三区| 久久精品夜夜夜夜久久| 欧美日本免费一区二区三区| 色综合一个色综合亚洲| 不卡电影免费在线播放一区| 国产传媒日韩欧美成人| 国产精品2024| 国产一区二区0| 国产福利一区二区三区视频在线|