ダストヘルパーを使用して以下のステートメントを記述する方法は?
{@eq key="device" value="windows || Linux"}
Your system is Windows or Linux based.
{:else}
Your system is MAC based.
{/eq}
ダストヘルパーを使用して以下のステートメントを記述する方法は?
{@eq key="device" value="windows || Linux"}
Your system is Windows or Linux based.
{:else}
Your system is MAC based.
{/eq}
Select Helper@any
でヘルパーを使用して、これを実現できます。
{@select key=device}
{@eq value="windows"/}
{@eq value="Linux"/}
{@any}Your system is Windows or Linux based.{/any}
{@none}Your system is MAC based.{/none}
{/select}