gpt4 book ai didi

f# - 使用 F# 进行多字段验证(在 azure 函数中)

转载 作者:行者123 更新时间:2023-12-05 00:16:22 26 4
gpt4 key购买 nike

我有一个基于 http post 模板的 azure 函数。我将json从1个 Prop 扩展到3个。

let versionJ = json.["version"]
let customerIdJ = json.["customerId"]
let stationIdJ = json.["stationId"]
match isNull versionJ with

在所有三个中检查 null 的最佳方法是什么?使用元组?
match isNull versionJ, isNull customerIdJ, isNull stationIdJ with

最佳答案

在这种情况下,我认为使用简单的 if 将是清洁剂解决方案,
如果您定义了 isNull作为:

let inline isNull value = (value = null)

然后就做:

if isNull versionJ && isNull customerIdJ && isNull stationIdJ then
// your code

关于f# - 使用 F# 进行多字段验证(在 azure 函数中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41859172/

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