JSF 刪除示例

2018-09-27 15:44 更新

JSF教程 - JSF刪除示例


我們可以使用“ui:remove"標(biāo)簽來(lái)定義要?jiǎng)h除的內(nèi)容。

通過(guò)使用“ui:remove"標(biāo)簽,我們可以認(rèn)為包含“ui:remove"標(biāo)簽的標(biāo)簽被注釋掉。

<ui:remove>
<h:commandButton type="button" 
  value="#{msg.buttonLabel}" />
</ui:remove>    

變?yōu)?/p>

<!--
<h:commandButton type="button" 
  value="#{msg.buttonLabel}" />
</ui:remove>       
-->

以下代碼顯示如何使用ui:remove標(biāo)記。


例子

以下代碼來(lái)自demo.xhtml。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"   
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets">
    <h:body>
      <ui:remove>
      <h:commandButton type="button" 
        value="#{msg.buttonLabel}" />
      </ui:remove>       
    </h:body>
</html>

下面的代碼來(lái)自UserBean.java。

package cn.w3cschool.common;

import java.io.Serializable;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
 
@ManagedBean(name="msg")
@SessionScoped
public class UserBean implements Serializable{

  String buttonLabel = "Submit";

  public String getButtonLabel() {
    return buttonLabel;
  }

  public void setButtonLabel(String buttonLabel) {
    this.buttonLabel = buttonLabel;
  }

}
下載 Remove.zip

運(yùn)行

將生成的WAR文件從目標(biāo)文件夾復(fù)制到Tomcat部署文件夾,并運(yùn)行Tomcat-Install-folder/bin/startup.bat。

Tomcat完成啟動(dòng)后,在瀏覽器地址欄中鍵入以下URL。

http://localhost:8080/simple-webapp/demo.xhtml


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)