"尝试索引全局'f' (函数值)”当尝试将函数附加到 loadfile 的结果时
代码说明了一切:
#tryModA.lua:
f,err=loadfile("tryModB.lua")
if not f then
print("F is nil!!! Err:"..err)
else
f.fn=function (x)
print("x="..x)
end
f()
end
这是加载的文件:
#tryModB.lua:
fn("hello")
错误:
lua: tryModA.lua:7: attempt to index global 'f' (a function value)
stack traceback:
tryModA.lua:7: in main chunk
[C]: ?
问题:为什么会发生这种情况?
loadfile()
返回一个函数对象并且我可以向它附加另一个函数,这不是真的吗?附言。我有 JavaScript 编程背景,其中有基于原型的对象。我假设 Lua 具有相同的基于原型的对象。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Lua中,
loadfile()
返回一个函数(不是函数对象),并且函数只能被调用。将任何内容“附加”到您正在尝试的功能上是不可能的。现在,Lua 表是完全不同的故事,JavaScript 中基于原型的概念可能适用于它们(我对 JS 不太熟悉)。此时使代码工作的最简单方法是使
fn
全局化,即将f.fn = function...
替换为fn = function...
尽管这可能不是您想要的。In Lua,
loadfile()
returns a function (not a function object) and functions can only be called. "Attaching" whatever to a function like you are trying is not possible.Now, Lua tables are completely different story and the prototype-based concepts from JavaScript probably apply to them (I'm not very familiar with JS). The simplest way to make your code work at this point is to make
fn
global i.e. replacef.fn = function...
withfn = function...
although this might not be what you want.