所以我有点问题。我从外部 API 检索一些天气数据。这以 JSON 形式返回并发送到 Azure IoT 中心。流分析将 json 处理为适当的格式,但我在这里遇到了问题。
元素:Current_Condition,是一个数组格式。它总是在 [0] 位置有一个元素。我只需要从第一个位置获取该数组的数据,而不需要过滤 id 等内容。
下面是完整的数据
{
"deviceId": "aNewDevice",
"data": {
"data": {
"current_condition": [
{
"cloudcover": "0",
"FeelsLikeC": "0",
"FeelsLikeF": "32",
"humidity": "100",
"observation_time": "10:00 AM",
"precipMM": "0.0",
"pressure": "1020",
"temp_C": "2",
"temp_F": "36",
"visibility": "0",
"weatherCode": "143",
"weatherDesc": [ { "value": "Fog, Mist" } ],
"weatherIconUrl": [ { "value": "http://cdn.worldweatheronline.net/images/wsymbols01_png_64/wsymbol_0006_mist.png" } ],
"winddir16Point": "SSW",
"winddirDegree": "210",
"windspeedKmph": "7",
"windspeedMiles": "4"
}
],
"request": [
{
"query": "Nijmegen, Netherlands",
"type": "City"
}
]
}
}
}
还有一些关于我到底需要做什么的解释(不仅仅是一个例子或代码答案)对未来会有好处。(请求元素毕竟有同样的问题。)
提前致谢 :)