gpt4 book ai didi

json - 如何检查 Azure 数据工厂中的值是否为 null

转载 作者:行者123 更新时间:2023-12-03 01:13:22 24 4
gpt4 key购买 nike

我正在尝试使用 Azure 数据工厂来运行 API 调用。这是我在将数据传递给 API 调用之前从 SQL 数据库获取的数据:

 {
"document_send_date": "2023-06-26T00:00:00Z",
"onboarding_form_send_date": null
}

有时这些值看起来像第一项。有时,该值为空。对于此 API 调用,我需要使用“yyyy-MM-dd”日期格式。我尝试使用 formatDateTime() 如下:

@concat('{
"data": [
{
"document_send_date": "', formatDateTime(item().document_send_date, 'yyyy-MM-dd'), '",
"onboarding_form_send_date": "', formatDateTime(item().onboarding_form_send_date, 'yyyy-MM-dd'), '"
}
]
}')

将日期时间值转换为日期值。但是,当值为 null 时,formatDateTime() 函数将返回错误。有没有办法检查传递给 formatDateTime() 的值是否为 null,如果是,则返回“null”,如果不是,则返回传递给函数的日期时间的日期字符串?

最佳答案

您可以使用if(condition,exp1,exp2)函数来检查该值是否为空。

像下面这样改变你的表情:

@concat('{
"data": [
{
"document_send_date": "', if(not(equals(item().document_send_date,null)),formatDateTime(item().document_send_date, 'yyyy-MM-dd'),item().document_send_date),'",',
'"onboarding_form_send_date": "', if(not(equals(item().onboarding_form_send_date,null)),formatDateTime(item().onboarding_form_send_date, 'yyyy-MM-dd'),item().onboarding_form_send_date),'"
}
]
}')
  • 这里,上面的表达式检查空值。如果这些不为空,则给出日期,否则将采用空值。
  • 当我们处理字符串时,上面的表达式会将 null 转换为 JSON 中的空字符串。如果需要,您可以在其他情况下根据您的要求更改字符串。

在这里,为了以 JSON 格式显示输出,我使用 ForEach 内的附加事件将上述结果 JSON 附加到数组中,并在上述表达式周围使用 json()

enter image description here

结果:

enter image description here

关于json - 如何检查 Azure 数据工厂中的值是否为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76559150/

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