gpt4 book ai didi

流体 - 检查值是否为 NULL 的条件不起作用

转载 作者:行者123 更新时间:2023-12-02 06:51:47 26 4
gpt4 key购买 nike

仅当属性值 fileEn 时,我才尝试输出我的元素为 NULL ( fileEn => NULL )

<f:if condition="{file.fileEn}==NULL">
<f:debug title='file'>{file}</f:debug>
</f:if>

然而,这也向我展示了 fileEn 不是 NULL 的元素!

最佳答案

您无法检查是否存在 NULL像这样,它是这样工作的:

仅当属性为 时才呈现空 :

<f:if condition="{file.fileEn}">
<f:then>

</f:then>
<f:else>
<!-- Property is NULL -->
<f:debug title='file'>{file}</f:debug>
</f:else>
</f:if>

仅当属性为 时才呈现非空 :
<f:if condition="{file.fileEn}">
<!-- Property is not NULL -->
<f:debug title='file'>{file}</f:debug>
</f:if>

关于流体 - 检查值是否为 NULL 的条件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41851924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com