Table[x][y] 不工作,有替代方案吗?

Table[x][y] is not working, is there an alternative?

我正在尝试使用 Discordia 制作一个不和谐的机器人,但是当我尝试使用 t[1][1] (parse[dataKey][message.guild.id]) 索引 table 时,它崩溃。你能帮忙吗?还有其他方法或其他人有过这种经历吗?可能是我太笨了。

local dataKey = message.author.id 
local file = io.open("./currency.json", "r") 
local parse = json.parse(file:read("*a")) 
file:close() 
if parse[dataKey][message.guild.id] ~= nil then
     parse[dataKey][message.guild.id] = parse[dataKey][message.guild.id] + addedCurrency 
else
     parse[dataKey][message.guild.id] = addedCurrency 
end

[已解决]

我修复了它,我很愚蠢而且格式错误currency.json。