上一步中的Null值时,Azure Logic应用程序失败

时间:2019-03-05 15:54:17

标签: azure-logic-apps

我在执行查询的逻辑应用程序时遇到问题,并且该查询有时返回空值,因此,我添加了空值检查,但仍然出现错误,有人可以帮我吗?

My null check coalesce(body('Run_query_and_list_results_2')?['value'],'')

检查图像enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以尝试将长度检查为

length(body('Run_query_and_list_results_2')?['value']) = 0 

或将equals运算符用作

"equals":[ "@empty(body('Run_query_and_list_results_2')?['value'])", true ]