本文介绍了是否有更好的方法从lua中的相对路径要求文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的目录结构如下:
|-- ball.lua
|-- entity.lua
|-- test
`-- ball_test.lua
我在test/ball_test.lua中使用以下代码来要求父目录中的ball.lua:
I'm using the following code in test/ball_test.lua to require ball.lua from the parent directory:
package.path = package.path .. ";../entity.lua"
require("entity")
package.path = package.path .. ";../ball.lua"
require("ball")
entity.lua是ball.lua的依赖项.因此,我首先需要require("entity"),否则会得到模块'entity.lua'找不到错误.这似乎是一种hack,有什么更好的方法呢?
entity.lua is a dependency of ball.lua. So I require("entity") first otherwise I get a module 'entity.lua' not found error. This seems like a hack, what's a better way to do this?
推荐答案
package.path = package.path .. ";../?.lua"
对两者都适用.
这篇关于是否有更好的方法从lua中的相对路径要求文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!