gpt4 book ai didi

lua - 如何让 LUA 脚本读取我的配置文件

转载 作者:行者123 更新时间:2023-12-02 08:17:00 27 4
gpt4 key购买 nike

我想让 lua 脚本读取自定义配置文件

personal.txt

[user4]
id=1234
code=9876

[user3]
id=765
code=fh723

所以我可以读取或写入数据

最佳答案

您可以使用 lua 模块进行配置:

-- config.lua

local _M = {}

_M.user3 = {
id = 765,
code = "fh723",
}

_M.user4 = {
id = 1234,
code = "9876",
}

return _M

那么你可以 require模块,并根据需要使用模块表中的字段:
-- main.lua

local config = require "config"

print (config.user3.id)
print (config.user3.code)

print (config.user4.id)
print (config.user4.code)

-- Also you can edit the module table
config.user4.id = 12345
print (config.user4.id)

输出:

765
fh723
1234
9876
12345

关于lua - 如何让 LUA 脚本读取我的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41176764/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com