在檢視中呈現環境特定內容

你可能需要在檢視中呈現某些內容,這僅適用於某些環境。要實現此目標,你可以使用 Environment 標記助手

<environment names="Development">
    <h1>This is heading for development environment</h1>
</environment>
<environment names="Staging,Production">
    <h1>This is heading for Staging or production environment</h1>
</environment>

如果當前環境與使用 names 屬性指定的某個環境匹配,則 Environment 標記助手將僅呈現其內容。