2

我正在使用 Flurl 库调用 Web 服务,该服务返回 JSON

{"data":{"charges":[{"code":30200757,"reference":"","dueDate":"18/12/2018","checkoutUrl":"https://sandbox.boletobancario.com/boletofacil/checkout/C238E9C42A372D25FDE214AE3CF4CB80FD37E71040CBCF50","link":"https://sandbox.boletobancario.com/boletofacil/charge/boleto.pdf?token=366800:m:3ea89b5c6579ec18fcd8ad37f07d178f66d0b0eb45d5e67b884894a8422f23c2","installmentLink":"https://sandbox.boletobancario.com/boletofacil/charge/boleto.pdf?token=30200757:10829e9ba07ea6262c2a2824b36c62e7c5782a43c855a1004071d653dee39af0","payNumber":"BOLETO TESTE - Não é válido para pagamento","billetDetails":{"bankAccount":"0655/46480-8","ourNumber":"176/30200757-1","barcodeNumber":"34192774200000123001763020075710655464808000","portfolio":"176"}}]},"success":true}

这是我的 F# 代码:

let c = "https://sandbox.boletobancario.com/boletofacil/integration/api/v1/"
        .AppendPathSegment("issue-charge")
        .SetQueryParams(map)
        .GetJsonAsync()

c.Wait()
let j = c.Result
let success = j?success

我检查了变量j包含一个 obj ("System.Dynamic.ExpandoObject")

例如,如何访问变量 j 中此 obj 的成功值?以及如何访问数据

Visual Studio 2019 截图

4

2 回答 2

4

我没有使用该特定库的经验,但如果结果只是一个 normal ExpandoObject,那么以下应该可以解决问题。

首先,ExpandoObject实现IDictionary<string, obj>,因此您可以将值转换为IDictionary,然后根据需要添加或获取成员:

open System.Dynamic
open System.Collections.Generic

let exp = ExpandoObject() 

// Adding and getting properties using a dictionary    
let d = exp :> IDictionary<string, obj>
d.Add("hi", 123)
d.["hi"]

如果你想使用?语法,你可以?自己定义操作符,和上面的完全一样:

let (?) (exp:ExpandoObject) s = 
  let d = exp :> IDictionary<string, obj>
  d.[s]

exp?hi

也就是说,如果您可以使用类型提供程序,那么使用F# Data进行 JSON 解析会容易得多,因为您可以将所有动态不安全?访问替换为经过类型检查的访问!

于 2018-12-09T00:39:17.693 回答
1

您可以通过fsprojects/FSharp.Interop.Dynamic使用预定义的?运算符来满足您的所有 DynamicObject 互操作需求

open FSharp.Interop.Dynamic
let ex1 = ExpandoObject()
ex1?Test<-"Hi"//Set Dynamic Property
ex1?Test //Get Dynamic
于 2018-12-14T16:42:24.570 回答