如何将JObject的值与Dictionary <string,string =“”>的键合并,并将其解析为新的JObject?

时间:2019-05-28 08:06:24

标签: c# .net json api dictionary

我正在尝试将JObject和Dictionary合并到新的JObject中,但是我不确定如何做到这一点。

我现有的JObject看起来像这样:

enter image description here

我的字典看起来像这样:

enter image description here

现在,我正在尝试创建一个新的JObject,其外观如下:

def vdot(a, b):
    return sum(a*b)

a = np.arange(25).reshape((5, 5))
b = np.arange(15).reshape((5, 3))

res = np.array([[vdot(a_row, b_col) for b_col in b.T] for a_row in a])

assert np.all(res == np.dot(a, b))

以此类推。

因此,对于字典中的每个Key,我都试图在Jobject的值与我的JObject的Key相匹配的情况下获取值。

希望有人能够理解并且可以帮助我,

提前谢谢!

0 个答案:

没有答案