工作流定义语言“equals”不返回布尔值

发布于 2025-01-10 07:13:46 字数 1464 浏览 1 评论 0原文

我正在使用以下 Azure 逻辑应用表达式(工作流定义语言 (WDL)):

equals(
    int(
        formatDateTime(
            subtractFromTime(
                utcNow(),
                7,
                'Day'
            ),
            'MM'
        )
    ),
    2
)

WDL 文档 表示 equals 函数应返回一个 boolean 值。

输入图片此处描述

但是,我看到的是 string 响应,而不是 boolean

  • 顶部显示的操作是实际的布尔值
  • 请注意 true 中的小写“t”,
  • 而底部显示的操作是问题

在此处输入图像描述

在此处输入图像描述

过:

  • 尝试 上面的函数在 bool 关键字中,相同的 string 结果(!)

这里发生了什么?

编辑 1:

  • 只是删除所有操作并再次测试,似乎现在正在工作
  • 奇怪

在此处输入图像描述

I'm working with the following Azure Logic App expression (Workflow Definition Language (WDL)):

equals(
    int(
        formatDateTime(
            subtractFromTime(
                utcNow(),
                7,
                'Day'
            ),
            'MM'
        )
    ),
    2
)

The WDL docs say that the equals function should return with a boolean value.

enter image description here

However, I'm seeing a string response, NOT boolean:

  • The action shown on top is an actual boolean
  • Note the lower case "t" in true
  • Whereas the action shown on the bottom is the issue

enter image description here

enter image description here

Tried:

  • Wrapping the above function in the bool keyword, same string result(!)

Whats going on here?

EDIT 1:

  • Just deleted all actions and tested again, seems to be working now
  • Weird

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文