標籤
$Label
變數可用於顯示自定義標籤中定義的文字。
<apex:outputText value="{!$Label.Welcome_Message}" />
你也可以使用標籤進行格式化。假設你有一個名為 Welcome_Message
的自定義標籤,定義為
Welcome to our site, {0}!
你可以使用標籤顯示格式化的訊息:
<apex:outputText value="{!$Label.Welcome_Message}" rendered="{!NOT(ISBLANK($User.ContactId))}">
<apex:param value="{!$User.Contact.FirstName}" />
</apex:outputText>