gpt4 book ai didi

lua - 参数变为nil

转载 作者:行者123 更新时间:2023-12-04 21:43:41 26 4
gpt4 key购买 nike

好的,
我目前在游戏中遇到以下错误:

...Addons\WatcherEx\GeminiSpellBook\GeminiSpellBook.lua:91: attempt to index local 'spell' (a nil value)
stack trace:
...Addons\WatcherEx\GeminiSpellBook\GeminiSpellBook.lua:91: in function 'IsStance'
...Addons\WatcherEx\GeminiSpellBook\GeminiSpellBook.lua:132: in function 'GetInnates'
...aming\NCSOFT\WildStar\Addons\WatcherEx\WatcherEx.lua:1868: in function 'UpdateSkillsList'
...aming\NCSOFT\WildStar\Addons\WatcherEx\WatcherEx.lua:1606: in function <...aming\NCSOFT\WildStar\Addons\WatcherEx\WatcherEx.lua:1600>

所以我一起使用这两个功能:
-- Description: Determines whether a given spell ID is a stance or not.
--
-- Parameters: - spell: The Spell object from the game we need to check.
--
-- Returns: True if the ID is that of a stance spell; otherwise false.
--
function GeminiSpellBook:IsStance(spell)
for i,group in ipairs(ctClassStancesAbilities) do
for j, stanceId in pairs(group) do
if spell:GetId() == stanceId then
return true
end
end
end

return false
end

由以下函数调用:
-- Description: Gets all the Innate abilities for the current character being played and stores
-- them in the internal tInnates structure.
-- The function takes no arguments, but expects a 'self' parameter, so
-- should be called as SpellBook:GetInnates()
--
-- Parameters:
--
-- Returns: The list of Innate abilities.
function GeminiSpellBook:GetInnates()
if self.tInnates == nil or #self.tInnates <= 0 then
self.tInnates = { }
local tSpells = GameLib.GetClassInnateAbilitySpells().tSpells or { }

for _,spell in ipairs(tSpells) do
if spell ~= nil and not self.IsStance(spell) then
table.insert(self.tInnates, spell)
end
end
end

return self.innates
end

我添加了一个检查,看看我是否传递了一个 nill 值,但我仍然不断收到错误消息。
我解释的方式是在函数调用期间传递的参数变为 nil。

但是当我自己在控制台中查看数据时,数据就在那里......

最佳答案

您应该将调用从 self.IsStance(spell) 更改为至 self:IsStance(spell)或使用 self.IsStance(self, spell) .由于您定义了 IsStance作为方法(使用 GeminiSpellBook:IsStance),它获取第一个参数为 self ,这是哪里spell被分配和 spell你期望的参数得到 nil值,这会导致您看到的错误。

关于lua - 参数变为nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28784029/

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