了解 Liquid 運算子
注意
自 2022 年 10 月 12 日起,Power Apps 入口網站為 Power Pages。 其他資訊:Microsoft Power Pages 現在已推出 (部落格)
我們很快就會遷移並將 Power Apps 入口網站文件與 Power Pages 文件併合。
Liquid 可存取所有常用的邏輯和比較運算子。 這些都可在標籤中使用,像是 if 和 unless。
基本運算子
== | 等於 |
---|---|
!= | 不等於 |
> | 大於 |
< | 小於 |
>= | 大於或等於 |
<= | 小於或等於 |
或 | 條件 A 或條件 B |
和 | 條件 A 和條件 B |
contains
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 %}