我有一张桌子如下:

ARQtable =
{
    120,  250,  400,  500,  730,
    790,  810,  935,  950,  999,

}

我试图用c来读取lua中的表。需要应用函数ARQSystem-> arqtable中的值
但在阅读表格时,我的错误是:PANIC: unprotected error in call to Lua API (attempt to call a nil value)
我的代码如下:
void read_table(void){
    lua_State *L;
    L = luaL_newstate();
    luaL_openlibs(L);

    int val = 2000, i = 0;
    if (luaL_loadfile(L, "tables.lua") || lua_pcall(L, 0, 0, 0))
    {
        ShowError("Error reading 'tables.lua'\n");
        return;
    }

    lua_getglobal(L, "ARQtable");
    if (lua_type(L, -1) == LUA_TTABLE) {
        for (i = 0; i < val; i++) {
            lua_pushnumber(L, i);
            lua_gettable(L, -2);
            ARQSystem->arqtable[i] = lua_isnumber(L, -1);
            lua_settop(L, -2);
        }
    }
    lua_close(L);
    printf("Read Table complete.\n");

}

我想知道为什么在阅读中会发生这样的错误,我对lua还不熟悉,有人帮我吗?

最佳答案

使用lua_getglobal(L,"ARQtable")而不是lua_getfield(L,-1,"ARQtable")
错误来自试图从表中获取字段,而此时堆栈上没有字段。

10-07 17:02