jsp標籤相關問題;推薦大家一個霸氣的標籤fn__js

來源:互聯網
上載者:User
1.背景

今天處理了一個很蛋疼的需求,服務端傳過來兩個值,在jsp頁面判斷其中一個值是否包含另一個值,用了很多種標籤方法,不是文法標籤結構錯誤就是資料結構不對;最終找到兩個可以完成判斷包含的方式,下面就簡單介紹下: Struts2標籤的方式

<s:if test="%{‘abcd’.indexof(’a’)}">checked="checked"</s:if> jstl標籤的方式

   <c:if test="${fn:contains(focusTids,tu.id)}">checked="checked"</c:if>

    說完上面方式那麼問題來了,struts標籤的方式相當噁心,試了n次也沒試出來怎麼把服務端傳過來的變數放到indexof函數的左右;最終jstl的fn的包含函數完美的解決了問題。 2.fn標籤介紹如下

頁面需要引入的標籤如下:

<%@taglib prefix="s" uri="/struts-tags"%>

<%@ taglibprefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@ taglibprefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>

下面科普下fn標籤相關知識,來自網路

函數名 函數說明 使用舉例 
fn:contains 判斷字串是否包含另外一個字串 <c:if test="${fn:contains(name, searchString)}"> 
fn:containsIgnoreCase 判斷字串是否包含另外一個字串(大小寫無關) <c:if test="${fn:containsIgnoreCase(name, searchString)}"> 
fn:endsWith 判斷字串是否以另外字串結束 <c:if test="${fn:endsWith(filename, ".txt")}"> 
fn:escapeXml 把一些字元轉成XML表示,例如 <字元應該轉為&lt; ${fn:escapeXml(param:info)} 
fn:indexOf 子字串在母字串中出現的位置 ${fn:indexOf(name, "-")} 
fn:join 將數組中的資料聯合成一個新字串,並使用指定字元格開 ${fn:join(array, ";")} 
fn:length 擷取字串的長度,或者數組的大小 ${fn:length(shoppingCart.products)} 
fn:replace 替換字串中指定的字元 ${fn:replace(text, "-", "&#149;")} 
fn:split 把字串按照指定字元切分 ${fn:split(customerNames, ";")} 
fn:startsWith 判斷字串是否以某個子串開始 <c:if test="${fn:startsWith(product.id, "100-")}"> 
fn:substring 擷取子串 ${fn:substring(zip, 6, -1)} 
fn:substringAfter 擷取從某個字元所在位置開始的子串 ${fn:substringAfter(zip, "-")} 
fn:substringBefore 擷取從開始到某個字元所在位置的子串 ${fn:substringBefore(zip, "-")} 
fn:toLowerCase 轉為小寫 ${fn.toLowerCase(product.name)} 
fn:toUpperCase 轉為大寫字元 ${fn.UpperCase(product.name)} 
fn:trim 去除字串前後的空格 ${fn.trim(name)} 

函數描述 

fn:contains(string, substring) 如果參數string中包含參數substring,返回true 
fn:containsIgnoreCase(string, substring) 如果參數string中包含參數substring(忽略大小寫),返回true 
fn:endsWith(string, suffix) 如果參數 string 以參數suffix結尾,返回true 
fn:escapeXml(string) 將有特殊意義的XML (和HTML)轉換為對應的XML character entity code,並返回 
fn:indexOf(string, substring) 返回參數substring在參數string中第一次出現的位置 
fn:join(array, separator) 將一個給定的數組array用給定的間隔符separator串在一起,組成一個新的字串並返回。 
fn:length(item) 返回參數item中包含元素的數量。參數Item類型是數組、collection或者String。如果是String類型,傳回值是String中的字元數。 
fn:replace(string, before, after) 返回一個String對象。用參數after字串替換參數string中所有出現參數before字串的地方,並返回替換後的結果 
fn:split(string, separator) 返回一個數組,以參數separator 為分割符分割參數string,分割後的每一部分就是數組的一個元素 
fn:startsWith(string, prefix) 如果參數string以參數prefix開頭,返回true 
fn:substring(string, begin, end) 返回參數string部分字串, 從參數begin開始到參數end位置,包括end位置的字元 
fn:substringAfter(string, substring) 返回參數substring在參數string中後面的那一部分字串 
fn:substringBefore(string, substring) 返回參數substring在參數string中前面的那一部分字串 
fn:toLowerCase(string) 將參數string所有的字元變為小寫,並將其返回 
fn:toUpperCase(string) 將參數string所有的字元變為大寫,並將其返回 
fn:trim(string) 去除參數string 首尾的空格,並將其返回
  JSP EL簡介
1、文法結構 ${expression} 2、[ ]與.運算子 EL 提供“.“和“[ ]“兩種運算子來存取資料。 當要存取的屬性名稱中包含一些 特殊字元,如.或?等並非字母或數位符號,就一定要使用“[ ]“。例如: ${user.My-Name}應當改為${user["My-Name"] } 如果要動態取值時,就可以用“[ ]“來做,而“.“無法做到動態取值。例 如: ${sessionScope.user[data]}中data 是一個變數 3、變數 EL存取變數資料的方法很簡單,例 如:${username}。它的意思是取出某一範圍中名稱為username的變數。 因為我們並沒有指定哪一個範圍的username,所以它會依序 從Page、Request、Session、Application範圍尋找。 假如途中找到username,就直接回傳,不再繼續找下去,但是假如 全部的範圍都沒有找到時,就回傳null。 屬性範圍在EL中的名 稱 Page PageScope Request RequestScope Session SessionScope Application ApplicationScope


 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.