gpt4 book ai didi

博主 b :if statement

转载 作者:行者123 更新时间:2023-12-04 07:00:00 26 4
gpt4 key购买 nike

请问博主有没有elseif语句?
我所看到的只是 if 和 else 但没有 elseif。

如果没有任何 elseif 语句,我如何为 if 语句提供多个条件?

例如在这种情况下,我有 3 个作者 A B 和 C。最近 D 和 E 加入了我们,我有一个代码,如果作者是 A B 或 C,它将发布他们各自的图像

<b:if cond='data:post.author == &quot;Author-A&quot;'>

<img class='ava' height='100'
src='img-URL-1'
width='100'/>

</b:if>
<b:if cond='data:post.author == &quot;Author-B&quot;'>

<img class='ava' height='100'
src='img-URL-2'
width='100'/>

</b:if>

等等。
但是如果作者不是 A B 或 C,CSS 会搞砸我的博客文章,所以我想到了使用 elseif,如果在这种情况下 elseif 不可用,我想在上面的代码之后添加这个
<b:if cond='data:post.author != &quot;Author-A&quot && &quot;Author-B&quot && &quot;Author-C&quot;'>

<img class='ava' height='100'
src='else-IMG-URL'
width='100'/>

</b:if>

但是我试过了,它似乎不起作用,它说&&无效。知道我应该把什么用作 OR 吗?

最佳答案

用伪代码翻译,您在逻辑上宁愿执行以下操作:

if (author != A && author != B && author != C)

因此不是你尝试过的:
if (author != A && B && C)

关于博主 b :if statement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2032211/

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