因此,我必须使用Lua从Openweathermap API获取天气数据。我设法发送一个http请求来返回并存储所有数据,但现在我陷入了一个Lua表,我不知道如何使用。我是Lua的新手,我没有找到任何有关Lua这种深层嵌套表的指南或类似内容。
特别是我只对主要的温度领域感兴趣。以下是API的示例响应:Sample request response
依赖项是Lua的socket.http和this json到Lua表格式化程序。这是我的基本代码结构
json = require ("json")
web = require ("socket.http")
local get = json.decode(web.request(<API Link>))
“get”现在存储一个我不知道如何使用的表
在https://www.json2yaml.com/的帮助下,结构是:
cod: '200'
message: 0.0036
cnt: 40
list:
- dt: 1485799200
main:
temp: 261.45
temp_min: 259.086
temp_max: 261.45
pressure: 1023.48
sea_level: 1045.39
grnd_level: 1023.48
humidity: 79
temp_kf: 2.37
weather:
- id: 800
main: Clear
description: clear sky
icon: 02n
clouds:
all: 8
wind:
speed: 4.77
deg: 232.505
snow: {}
sys:
pod: n
dt_txt: '2017-01-30 18:00:00'
…
- dt: 1486220400
…
city:
id: 524901
name: Moscow
coord:
lat: 55.7522
lon: 37.6156
country: none
所以,
for index, entry in ipairs(get.list) do
print(index, entry.dt, entry.main.temp)
end
ipairs
迭代表中的正整数键,最多但不包括没有值的第一个整数。这似乎是JSON库代表JSON数组的方式。
该示例响应似乎有许多子表,其中包含main
。试试这个:get.list[1].main.temp
。
如果你不知道如何使用Lua表,你可能应该学习Lua的基础知识。请参阅https://www.lua.org/start.html
json字符串使用其所有键和值对Lua表进行编码。
您可以读取编码器如何对表进行编码,也可以只编码自己的表并分析生成的json字符串。
print(json.encode({1,2,3}))
[1,2,3]
print(json.encode({a=1, b={1,2}, [3]="test"}))
{ “3”: “测试”, “B”:[1,2], “一”:1}
等等...
总是有表键和值,用冒号分隔。值可以是数字,字符串,表...如果表只有从1开始的数字键,则值是括号中这些值的列表。如果表中有不同的键,则用大括号括起来...
那么让我们来看看你的结果。我将删除40个条目中的39个以缩短它。我还会缩进以使结构更具可读性。
{
"cod":"200",
"message":0.0036,
"cnt":40,
"list":[{
"dt":1485799200,
"main":{
"temp":261.45,
"temp_min":259.086,
"temp_max":261.45,
"pressure":1023.48,
"sea_level":1045.39,
"grnd_level":1023.48,
"humidity":79,
"temp_kf":2.37},
"weather":[
{
"id":800,
"main":"Clear",
"description":"clear sky",
"icon":"02n"
}],
"clouds":{"all":8},
"wind":{"speed":4.77,"deg":232.505},
"snow":{},
"sys":{"pod":"n"},
"dt_txt":"2017-01-30 18:00:00"}
],
"city":{
"id":524901,
"name":"Moscow",
"coord":{
"lat":55.7522,
"lon":37.6156
},
"country":"none"
}
}
2天后我终于找到了错误。我在Minecraft Mod工作,名为OpenComputers,它使用Lua。似乎mod使用了自己的socket.http版本,每次我想打印响应时它返回两个与请求一起使用的函数。我发现如果我在变量之后放了一个“()”,它会将Response作为字符串返回,并且使用JSON库我可以将其解码为可操作的表。
旁注:我可以像这样访问天气:json_table [“weather”] [“temp”]
在http请求中,mod很难记录,所以我不得不通过myslef来解决这个问题。感谢您的回复,最终错误总是出乎意料!