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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? spring.ftl

?? 用Spring實(shí)現(xiàn)的小型訂單系統(tǒng)源碼,適合于個(gè)人網(wǎng)店
?? FTL
字號(hào):
<#-- * 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>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲va欧美va人人爽| 欧美国产国产综合| 国产精品一卡二卡在线观看| 国产精品国产三级国产aⅴ无密码| 欧美性生活影院| 国产99精品国产| 免费观看在线色综合| 亚洲人精品午夜| 久久综合九色综合97婷婷女人| 91啪亚洲精品| 精品系列免费在线观看| 亚洲丝袜精品丝袜在线| 久久久久久免费| 69堂精品视频| 一本大道久久a久久综合| 国产乱子轮精品视频| 日韩在线播放一区二区| 亚洲柠檬福利资源导航| 国产日本欧美一区二区| 欧美成人a∨高清免费观看| 欧美日韩精品电影| 日本久久电影网| 99免费精品在线观看| 成人午夜av电影| 激情久久五月天| 另类欧美日韩国产在线| 性欧美疯狂xxxxbbbb| 一区二区三区四区视频精品免费 | 日韩一区中文字幕| 久久亚洲一级片| 日韩写真欧美这视频| 欧美视频一区二区三区| 在线观看日韩电影| 色婷婷激情综合| 色综合色狠狠天天综合色| yourporn久久国产精品| 国产福利一区在线| 夫妻av一区二区| 成人免费观看av| 成人av综合一区| 不卡av在线免费观看| 成人av免费观看| 91一区二区三区在线观看| 岛国精品在线播放| 成人午夜激情在线| 99综合电影在线视频| www.爱久久.com| 日本精品视频一区二区| 日本韩国一区二区三区| 91福利在线导航| 欧美日韩和欧美的一区二区| 精品视频一区三区九区| 欧美精品久久久久久久久老牛影院| 欧美日韩国产成人在线免费| 欧美乱熟臀69xxxxxx| 69堂精品视频| 久久久久久亚洲综合| 亚洲欧洲日本在线| 亚洲黄色尤物视频| 婷婷一区二区三区| 黑人精品欧美一区二区蜜桃| 国产成人综合亚洲网站| 成人久久久精品乱码一区二区三区| 成+人+亚洲+综合天堂| eeuss鲁片一区二区三区在线看| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 五月天久久比比资源色| 美女视频网站黄色亚洲| 国产91清纯白嫩初高中在线观看 | 国产在线视频精品一区| 懂色av噜噜一区二区三区av| 一本一道久久a久久精品| 欧美日韩黄色影视| 国产亚洲精品久| 亚洲美女视频在线| 日本va欧美va瓶| 波多野结衣在线aⅴ中文字幕不卡| 91成人国产精品| 精品国内片67194| 亚洲色图.com| 麻豆高清免费国产一区| 成人黄色电影在线| 7777精品伊人久久久大香线蕉超级流畅 | 青娱乐精品视频| 高清av一区二区| 3d动漫精品啪啪1区2区免费| 欧美精品一区二区久久久| ...xxx性欧美| 精品一区二区三区视频| 色综合久久天天| 一区二区日韩电影| 国产在线观看一区二区| 色偷偷一区二区三区| 精品蜜桃在线看| 一区二区三区日韩| 国产成人亚洲精品狼色在线| 在线免费观看日本欧美| 久久无码av三级| 亚洲成人中文在线| 成人av网站免费观看| 日韩欧美成人一区| 亚洲午夜电影在线观看| 成人午夜视频在线观看| 日韩免费性生活视频播放| 亚洲蜜臀av乱码久久精品| 国产一区二区三区免费看| 欧美日韩一区高清| 亚洲欧洲性图库| 国产精品亚洲成人| 日韩无一区二区| 五月天国产精品| 在线国产亚洲欧美| 国产精品妹子av| 国产精品系列在线观看| 日韩欧美美女一区二区三区| 亚洲国产精品精华液网站| 白白色 亚洲乱淫| 中文在线资源观看网站视频免费不卡| 青草国产精品久久久久久| 色综合欧美在线| 亚洲欧洲在线观看av| 成人的网站免费观看| 久久久久久久久久久久久女国产乱| 视频一区视频二区在线观看| 欧美亚洲日本一区| 亚洲激情一二三区| 色婷婷av一区二区三区软件 | 欧美tickle裸体挠脚心vk| 亚洲18女电影在线观看| 91国产成人在线| 中文字幕一区不卡| 91免费看`日韩一区二区| 欧美国产视频在线| 成人午夜激情影院| 国产精品久久久久久久久免费桃花 | 久久综合999| 九九精品一区二区| 精品少妇一区二区三区免费观看 | 毛片av一区二区三区| 91精品国模一区二区三区| 亚洲高清视频的网址| 欧美中文一区二区三区| 亚洲伊人色欲综合网| 欧美日韩亚洲另类| 视频一区欧美精品| 91精品在线免费观看| 日本欧美一区二区在线观看| 91精品国产91久久久久久一区二区| 亚洲bt欧美bt精品777| 欧美精品粉嫩高潮一区二区| 日本成人在线不卡视频| 欧美丰满美乳xxx高潮www| 青青草精品视频| 精品剧情在线观看| 国产精品白丝av| 国产精品青草久久| 色欧美88888久久久久久影院| 亚洲精品久久久蜜桃| 欧美日韩第一区日日骚| 久久爱www久久做| 国产精品无圣光一区二区| 99国产精品国产精品久久| 一区二区三区精品视频在线| 欧美精品日韩一本| 激情综合五月天| 中文字幕在线观看一区二区| 色一情一乱一乱一91av| 日韩精品欧美精品| 久久午夜色播影院免费高清 | 99re这里只有精品视频首页| 一个色在线综合| 欧美一级免费大片| 国产福利一区二区三区| 亚洲欧洲日韩女同| 欧美一区二区不卡视频| 粉嫩一区二区三区性色av| 亚洲精品欧美专区| 日韩欧美成人午夜| 91最新地址在线播放| 日日夜夜精品视频天天综合网| 26uuu久久天堂性欧美| 91香蕉视频污| 免费av网站大全久久| 国产精品青草综合久久久久99| 欧美日韩中文一区| 丁香五精品蜜臀久久久久99网站 | 欧美日韩久久不卡| 国产成人精品一区二区三区四区 | 欧美自拍偷拍午夜视频| 精品中文av资源站在线观看| 亚洲欧洲日产国产综合网| 日韩一区二区麻豆国产| 99视频国产精品| 精品一区二区三区在线播放视频| 亚洲免费观看高清完整版在线 | 免费在线观看成人| 亚洲精品久久久久久国产精华液| 欧美mv日韩mv| 欧美日本乱大交xxxxx| 成人中文字幕合集|