具有可变字符串的地址表

问题描述 投票:-1回答:1

Lang文件:

local lang = {
    keys = {
        mec_boss = {
            title = "mec_boss",
            perm = "mec.perm",
        },
        police_boss = {
            title = "police_boss",
            perm = "police.perm",
        }
    }
}

我希望能够获得这样的值:

local test = "mec_boss"
print(lang.keys.(test).perm)

我也尝试过[而不是(

我很难描述这个。对不起!

lua
1个回答
0
投票
解决方案print(lang.keys[test].perm)
© www.soinside.com 2019 - 2024. All rights reserved.