我有一個基於http post模板的azure函數。我把json從1道擴大到3.使用F#進行多個字段驗證(在天藍色的函數內)
let versionJ = json.["version"]
let customerIdJ = json.["customerId"]
let stationIdJ = json.["stationId"]
match isNull versionJ with
什麼是檢查所有三個空值的最佳方法?使用鬱金香?
match isNull versionJ, isNull customerIdJ, isNull stationIdJ with
當你想使用列表(哪個線程使用比簡單if更多的資源)。有更簡單的解決方案: – mjpolak