4

以下示例是否有内联表示法?

<f:if condition="{value}==1">
    <f:then>Value is 1</f:then>
    <f:else if="{value}==2">Value is 2</f:else>
</f:if>

谢谢你的帮助

4

2 回答 2

4

可能是if-viewhelpers的级联:

{f:if(condition:'{value}==1', 
    then:'Value is 1', 
    else:'{f:if(condition:\'{value}=2\', then:\'Value is 2\')}'
)}

通常的缺点是为堆叠的内联视图助手转义字符串分隔符。

于 2017-11-08T10:20:04.347 回答
1

您的条件将默认为“值为 2”,尽管该值可能不是......这不是真的,无论如何更完整一点:

<f:if condition="{value}==1">
  <f:then>Value is 1</f:then>
  <f:else if="{value}==2">Value is 2</f:else>
  <f:else>Value is not valid</f:else>
</f:if>

如果不满足两个条件,则不输出任何内容的简单内联注释:

{f:if(condition:'{value}==1',
  then: 'Value is 1',
  else: '{f:if(condition:\'{value}==2\',then: \'Value is 2\')}'
)}

在第二个条件中添加 else 子句:

{f:if(condition:'{value}==1',
  then: 'Value is 1',
  else: '{f:if(condition:\'{value}==2\',
    then: \'Value is 2\',
    else: \'Value is not valid\'
  )}'
)}
于 2017-11-07T21:26:07.533 回答