理解这个 Lua 片段

发布于 2024-11-30 11:05:49 字数 174 浏览 1 评论 0原文

我这里有一段代码:

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 技术交流群。

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

发布评论

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

评论(1

给我一枪 2024-12-07 11:05:49

require 可以加载用 Lua 编写的 DLL 和库。它按顺序使用 package.pathpackage.cpath 查找它们。详细内容请参见Lua参考手册

require can load both DLLs and libraries written in Lua. It looks for them using package.path and package.cpath, in that order. For details, see the Lua reference manual.

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