-1

当我向表格 (Lua) 添加内容时,我遇到了一个巨大的问题,表格中的所有内容突然消失了。有问题的表包含禁止列表的数据(目前有 608 个条目),并通过使用table.insert放置在表中,但是用户的潜在客户条目以Umbra.Banlist[profileId] = {};的形式完成。. Umbra.Banlist [profileId] = {}; 单独的表应该意味着 Umbra.Banlist 表中有内容。运行代码和使用时我没有收到任何错误

    if (#Umbra.Banlist == 0) then
        System.LogAlways(Umbra.Tag.." The Banlist seems to be empty. It seems that some part of loading has failed.");
    end

我明白了:

1

我在网上和这个网站上看过,但似乎没有任何相关的问题,所以我把它贴在这里。

此代码是 Crysis Wars 的服务器模块的一部分(请参阅下面的整个函数),但手头有整个 Lua 库(因此,如果您认为您的答案不能解决问题,请不要担心)。

编码:

    Umbra.ReadBans = function()
    self = Umbra;
    System.LogAlways(Umbra.Tag.." Starting banlist read.");
    FileHnd, err = io.open(Root().."Mods/Infinity/System/Read/Banlst.lua", "r");
    if (not FileHnd) then
        System.LogAlways(Umbra.Tag.." Unable to find file 'Banlst.lua'.");
        return;
    end
    for line in FileHnd:lines() do
        local name, profile, ip, domain, reason, date, bannedby = line:match([[Umbra.BanSystem:Add%('(.-)', '(.+)', '(.+)', '(.+)', '(.+)', '(.+)', '(.-)'%);]]);
        if (not name) then
            System.LogAlways(Umbra.Tag.." Failed to read the banlist at line "..count or 0);
            break;
        end
        System.LogAlways(Umbra.Tag.." Banlist; Name: [ "..name.." ], For: [ "..reason.." ], By: [ "..bannedby.." ]");
        --local Msg, Date, Reason, Type, Domain = line:match([[User:Read%( "(.-)", { Date="(.+)"; Reason="(.+)"; Typ="(.+)"; Info="(.+)"; } %);]]);
        --User:Read( "Banned", { Date="31.03.2011"; Reason="WEBSTREAM"; Typ="Inetnum"; Info="COMPUTER.SED.gg"; } );
        --Umbra.BanSystem:Add('patryk', '258132298', '178.183.243.163', '178.183.243.163.dsl.dynamic.t-mobile.pl', 'flyhack', '08/11/2012 | 21:39:53', 'Anti-Noob');
        Umbra.Banlist[profile] = {};
        table.insert(Umbra.Banlist[profile], name);
        table.insert(Umbra.Banlist[profile], ip);
        table.insert(Umbra.Banlist[profile], domain);
        table.insert(Umbra.Banlist[profile], reason);
        table.insert(Umbra.Banlist[profile], date);
        table.insert(Umbra.Banlist[profile], bannedby);
        --[[Umbra.Banlist[profile].name = name;
        Umbra.Banlist[profile].ip = ip;
        Umbra.Banlist[profile].domain = domain;
        Umbra.Banlist[profile].reason = reason;
        Umbra.Banlist[profile].date = date;
        Umbra.Banlist[profile].bannedby = bannedby;--]]
        if not count then count = 0; end
        count = count + 1;
    end
    Umbra.Bans = {};
    Umbra.Bans.cnt = count;
    System.LogAlways(Umbra.Tag.." Read "..count.." banned players (added into the Umbra Global Banlist)");
    if (#Umbra.Banlist == 0) then
        System.LogAlways(Umbra.Tag.." The Banlist seems to be empty. It seems that some part of loading has failed.");
    end
    count = nil; --Purge this one as well, again!
end

编辑:

如果表中不存在他们的个人资料,我没有收到以下代码应该打印的消息,因此他们的个人资料确实存在。

    if (not Umbra.Banlist[profile]) then
            System.LogAlways(Umbra.Tag.." Error in 'Umbra.Banlist': The profile does not exist.)");
            break;
        end

另一个编辑:

证明系统实际上可以获得“ID”变量

在此处输入图像描述

4

2 回答 2

4

在您的代码末尾附近,#Umbra.Banlist == 0但我没有看到任何项目通过数字键插入其中。这里有一些事情要检查,看看你的假设是否与现实相符。

检查那profile不是nil。看起来在您的用例中您假设它是一个数字。您可以通过以下方式轻松检查:

assert(profile)
assert(type(profile) == 'number')

如果profile实际上不是数字类型,则使用#运算符检查 Umbra.Banlist 是错误的。注意#不计算表格的关联部分。如果您只关心 Umbra.Banlist 是否为空,您可以使用if next(Umbra.Banlist) then它来检查它。

于 2013-07-28T21:02:12.263 回答
2

只需尝试使用此函数来获取表中的项目数:

function count(t)
    local c=0;
    for i in pairs(t) do c=c+1; end
    return c;
end
--...
if(count(Umbra.Banlist)==0)then
    --...
end

问题是, # 计算带有数字索引的数组/表,但是您有带有字符串索引的表。# 就像在该计数函数中将“pairs”替换为“ipairs”一样。因此,当您执行 #Umbra.Banlist 时,所有索引都是字符串,它返回 0,因为有 0 个整数索引,但这并不意味着该表是空的。

于 2013-07-30T10:39:40.103 回答