gpt4 book ai didi

azure 逻辑应用: not corrently checking empty check

转载 作者:行者123 更新时间:2023-12-03 06:54:33 26 4
gpt4 key购买 nike

以下逻辑应用在上午 10 点触发并运行 SQL Server 查询。从图片中可以看出,结果集是空的。

条件检查检查查询的结果集是否为空。 (第二张图)

这仍然如何转化为 True?结果显然是空的。

enter image description here

enter image description here

最佳答案

根据您的条件,您正在尝试将数组与 bool 值进行比较。

相反,您可以检查数组的长度是否不等于 0:

{
"Condition": {
...
"expression": {
"and": [
{
"not": {
"equals": [
"@length(body('query')?['resultsets'])",
0
]
}
}
]
},
...
}
}

关于 azure 逻辑应用: not corrently checking empty check,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73164785/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com