【发布时间】:2019-04-05 11:19:19
【问题描述】:
我有一个使用 Bind Rest Api 获取地址信息的逻辑应用程序。我收到了一个嵌套的 json 对象。当我尝试解析它时,我在 dynamix 语法框中得到了空值。
下面是我得到的json对象,但是当我在解析后将它们用作属性时,它们被标记为null:
{
"address": {
"addressLine": "1-11-252, Begumpet Road",
"adminDistrict": "TS",
"adminDistrict2": "Hyderabad",
"countryRegion": "India",
"formattedAddress": "1-11-252, Begumpet Road, Hyderabad, TS 500016",
"intersection": {
"baseStreet": "Begumpet Road",
"secondaryStreet1": "Chikoti Garden No-4 Road",
"intersectionType": "Near",
"displayName": "Begumpet Road and Chikoti Garden No-4 Road"
},
"locality": "Hyderabad",
"neighborhood": "Begumpet",
"postalCode": "500016",
"countryRegionIso2": "IN"
}
}
【问题讨论】:
标签: json azure azure-logic-apps