使用 Liquid 在 Power Apps Portal 中是否有与 Shopify 的 url_decode类似的功能。我尝试使用上面链接中提到的过滤器,但不适用于 Power Apps 门户。
我正在尝试从“?ParentCategory=Services%20&%20Fees&SubCategory=Test”中获取“服务和费用”。
使用 Liquid 在 Power Apps Portal 中是否有与 Shopify 的 url_decode类似的功能。我尝试使用上面链接中提到的过滤器,但不适用于 Power Apps 门户。
我正在尝试从“?ParentCategory=Services%20&%20Fees&SubCategory=Test”中获取“服务和费用”。
有一个液体过滤器可以满足您的需要,这里是示例:https ://shopify.github.io/liquid/filters/url_decode/
如果字符串是页面网址的一部分,您可以使用液体
{% assign ParentCategory = request.params['ParentCategory'] %}
用法:
<a href={{ rParentCategory }}>Link</a>