为什么我无法将 .txt 文件存储为表格?

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

我的 Raspberry Pi 上运行着一个基于 Python 的 Web 服务器,它可以在 Roblox 上抓取交易货币汇率。如果你不知道我刚才说的是什么,你只需要知道我正在收集某个网页上发生变化的数字。我想将收集到的信息导入到我的 Roblox 游戏中,以便我可以将其绘制成图表(我已经制作了绘图仪)。

这是我导入它的方法:

bux = game.HttpService:GetAsync("http://tcserver.raspctl.com:5000/AvailableRobux.txt")
bux = {bux}
tix = game.HttpService:GetAsync("http://tcserver.raspctl.com:5000/AvailableTickets.txt")
tix = {tix}

这给了我一个 404 响应。如果我从我的计算机(在同一网络上)访问 Web 服务器,它也会给我一个 404 响应。我知道我正确地进行了端口转发,因为下面的 lua 行确实有效。

print(game.HttpService:GetAsync("http://tcserver.raspctl.com:5000/AvailableRobux.txt"))

我需要将 Robux 和 Ticket 费率存储在表中。转到包含费率数据的 URL 之一,您将看到它已经格式化为 Rbx.Lua 表,它只需要花括号。如何将数据转换为表格?

variables lua lua-table httpservice roblox
1个回答
4
投票

您不能只是将字符串转换为这样的表格,您需要通过沿分隔符(逗号)将其拆分为表格。 请参阅有关在 Lua 中拆分字符串的页面。我建议去掉空格,只在数据条目之间使用逗号。

这是您需要的示例。爆炸功能来自我发布的链接。我没有测试过。

function explode(d,p)
  local t, ll
  t={}
  ll=0
  if(#p == 1) then return {p} end
    while true do
      l=string.find(p,d,ll,true) -- find the next d in the string
      if l~=nil then -- if "not not" found then..
        table.insert(t, string.sub(p,ll,l-1)) -- Save it in our array.
        ll=l+1 -- save just after where we found it for searching next time.
      else
        table.insert(t, string.sub(p,ll)) -- Save what's left in our array.
        break -- Break at end, as it should be, according to the lua manual.
      end
    end
  return t
end

bux = game.HttpService:GetAsync("http://tcserver.raspctl.com:5000/AvailableRobux.txt")
bux = explode(",",bux)
tix = game.HttpService:GetAsync("http://tcserver.raspctl.com:5000/AvailableTickets.txt")
tix = explode(",",tix)
© www.soinside.com 2019 - 2024. All rights reserved.