"尝试索引全局'f' (函数值)”当尝试将函数附加到 loadfile 的结果时

发布于 2024-12-01 12:21:11 字数 598 浏览 1 评论 0 原文

代码说明了一切:

#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 具有相同的基于原型的对象。

The code says it all:

#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

And here is the loaded file:

#tryModB.lua:
fn("hello")

Error:

lua: tryModA.lua:7: attempt to index global 'f' (a function value)
stack traceback:
    tryModA.lua:7: in main chunk
    [C]: ?

Question: why does it happen ?

Isn't it true that loadfile() returns a function object and I can attach another function to it? PS. I come from a JavaScript programming background where it has prototype-based objects. I assume Lua has the same prototype based objects.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你鎻心 2024-12-08 12:21:11

在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. replace f.fn = function... with fn = function... although this might not be what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文