了解 Liquid 运算符
备注
从 2022 年 10 月 12 日起,Power Apps 门户更名为 Power Pages。 详细信息请参阅:Microsoft Power Pages 现已正式发布(博客)
不久后我们将迁移 Power Apps 门户文档并将其与 Power Pages 文档合并在一起。
Liquid 可以访问所有公共逻辑和比较运算符。 这些可用于标记中,例如,如果和除非。
基本运算符
== | 等于 |
---|---|
!= | 不等于 |
> | 大于 |
< | 小于 |
>= | 大于或等于 |
<= | 小于或等于 |
或 | 条件 A 或条件 B |
和 | 条件 A 和条件 B |
包含
contains 用于测试字符串中的子字符串显示。
{% if page.title contains 'Product' %}
The title of this page contains the word Product.
{% endif %}
contains 也可测试字符串阵列内的字符串显示。
startswith
startswith 用于测试字符串是否以特定子字符串开头。
{% if page.title startswith 'Profile' %}
This is a profile page.
{% endif %}
endswith
endswith 用于测试字符串是否以特定子字符串结尾。
{% if page.title endswith 'Forum' %}
This is a forum page.
{% endif %}