理解这个 Lua 片段
我这里有一段代码:
local http = require("socket.http")
我知道它应该允许我使用其他地方的一些东西,但我有几个问题。
它期望在哪里找到“socket.http”? 它应该期待什么?一个DLL? Lua 脚本?两个都?
I've got this bit of code here:
local http = require("socket.http")
I know it's supposed to allow me to use some stuff from somewhere else but I have a couple of questions.
Where does it expect to find "socket.http"?
What should it expect? A DLL? A Lua script? Both?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
require
可以加载用 Lua 编写的 DLL 和库。它按顺序使用package.path
和package.cpath
查找它们。详细内容请参见Lua参考手册。require
can load both DLLs and libraries written in Lua. It looks for them usingpackage.path
andpackage.cpath
, in that order. For details, see the Lua reference manual.