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

溫馨提示×

溫馨提示×

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

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

struts2中如何移除simple主題下<s:fieldError>標簽默認樣式

發布時間:2021-07-19 10:26:21 來源:億速云 閱讀:150 作者:小新 欄目:編程語言

這篇文章主要介紹了struts2中如何移除simple主題下<s:fieldError>標簽默認樣式,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

方法如下

①找到配置文件

struts2-core-2.3.35.jar/template/simple/fielderror.ftl(不同版本的文件路徑大同小異)

②創建新的文件包并拷貝文件

在項目根目錄下創建template.simple并將fielderror.ftl拷貝過來

此時根目錄下的fielderror.ftl文件優先權大于默認的fielderror.ftl文件

③修改拷貝過來的fielderror.ftl文件

修改前文件如下

<#--
/*
 * $Id$
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->
<#if fieldErrors??><#t/>
 <#assign eKeys = fieldErrors.keySet()><#t/>
 <#assign eKeysSize = eKeys.size()><#t/>
 <#assign doneStartUlTag=false><#t/>
 <#assign doneEndUlTag=false><#t/>
 <#assign haveMatchedErrorField=false><#t/>
 <#if (fieldErrorFieldNames?size > 0) ><#t/>
  <#list fieldErrorFieldNames as fieldErrorFieldName><#t/>
   <#list eKeys as eKey><#t/>
    <#if (eKey = fieldErrorFieldName)><#t/>
     <#assign haveMatchedErrorField=true><#t/>
     <#assign eValue = fieldErrors[fieldErrorFieldName]><#t/>
     <#if (haveMatchedErrorField && (!doneStartUlTag))><#t/>
     <ul<#rt/>
      <#if parameters.id?has_content>
        id="${parameters.id?html}"<#rt/>
      </#if>
      <#if parameters.cssClass?has_content>
        class="${parameters.cssClass?html}"<#rt/>
       <#else>
        class="errorMessage"<#rt/>
      </#if>
      <#if parameters.cssStyle?has_content>
        <#rt/>
      </#if>
       >
      <#assign doneStartUlTag=true><#t/>
     </#if><#t/>
     <#list eValue as eEachValue><#t/>
      <li><span><#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if></span></li>
     </#list><#t/>
    </#if><#t/>
   </#list><#t/>
  </#list><#t/>
  <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
  </ul>
   <#assign doneEndUlTag=true><#t/>
  </#if><#t/>
  <#else><#t/>
  <#if (eKeysSize > 0)><#t/>
  <ul<#rt/>
   <#if parameters.cssClass?has_content>
     class="${parameters.cssClass?html}"<#rt/>
    <#else>
     class="errorMessage"<#rt/>
   </#if>
   <#if parameters.cssStyle?has_content>
     <#rt/>
   </#if>
    >
   <#list eKeys as eKey><#t/>
    <#assign eValue = fieldErrors[eKey]><#t/>
    <#list eValue as eEachValue><#t/>
     <li><span><#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if></span></li>
    </#list><#t/>
   </#list><#t/>
  </ul>
  </#if><#t/>
 </#if><#t/>
</#if><#t/>

將<ul></ul>、<li></li>、<span></span>刪除

修改后文件如下

<#--
/*
 * $Id$
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->
<#if fieldErrors??><#t/>
 <#assign eKeys = fieldErrors.keySet()><#t/>
 <#assign eKeysSize = eKeys.size()><#t/>
 <#assign doneStartUlTag=false><#t/>
 <#assign doneEndUlTag=false><#t/>
 <#assign haveMatchedErrorField=false><#t/>
 <#if (fieldErrorFieldNames?size > 0) ><#t/>
  <#list fieldErrorFieldNames as fieldErrorFieldName><#t/>
   <#list eKeys as eKey><#t/>
    <#if (eKey = fieldErrorFieldName)><#t/>
     <#assign haveMatchedErrorField=true><#t/>
     <#assign eValue = fieldErrors[fieldErrorFieldName]><#t/>
     <#if (haveMatchedErrorField && (!doneStartUlTag))><#t/>
     
      <#assign doneStartUlTag=true><#t/>
     </#if><#t/>
     <#list eValue as eEachValue><#t/>
      <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if>
     </#list><#t/>
    </#if><#t/>
   </#list><#t/>
  </#list><#t/>
  <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
  
   <#assign doneEndUlTag=true><#t/>
  </#if><#t/>
  <#else><#t/>
  <#if (eKeysSize > 0)><#t/>
  
   <#list eKeys as eKey><#t/>
    <#assign eValue = fieldErrors[eKey]><#t/>
    <#list eValue as eEachValue><#t/>
     <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if>
    </#list><#t/>
   </#list><#t/>
  
  </#if><#t/>
 </#if><#t/>
</#if><#t/>

重啟tomcat

感謝你能夠認真閱讀完這篇文章,希望小編分享的“struts2中如何移除simple主題下<s:fieldError>標簽默認樣式”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

内江市| 塘沽区| 闵行区| 东乌| 玉田县| 彩票| 通化县| 娱乐| 邻水| 隆安县| 连城县| 厦门市| 耿马| 竹溪县| 玉环县| 汉中市| 宁南县| 永清县| 崇阳县| 敦煌市| 哈尔滨市| 自贡市| 西乌珠穆沁旗| 陇西县| 彰化县| 海城市| 哈尔滨市| 长垣县| 大冶市| 台南市| 玛沁县| 海伦市| 武清区| 孟连| 城固县| 潼南县| 凭祥市| 怀化市| 蒙城县| 科技| 铅山县|