检查Logic App HTTP请求中是否存在查询字符串

时间:2018-10-05 15:05:59

标签: azure parameters azure-logic-apps

如何检查Logic App HTTP请求中是否存在查询字符串?我知道如何获取存在的值triggerOutputs()['queries']['name'],但是不确定如何检查其null是否为可选参数

1 个答案:

答案 0 :(得分:2)

您必须使用?运算符,例如:

trigger().outputs?.queries?.name

此外,如果要获取其他值(名称为null),则可以使用 coalesce

@coalesce(trigger().outputs?.queries?.name, 'my t value instead of name')