我有一个情节提要文件,我想引用实现情节提要的文件的名称,以便我可以加载具有相同基本名称的配置文件。
这是一个名为的文件中的示例scene001.lua
-- Called when the scene's view does not exist:
function scene:createScene( event )
local screenGroup = self.view
local json = require("json")
-- load the book definition file
local contents = textFromFile("scene001.json")
local page = json.decode(contents)
image = buildPage(page)
screenGroup:insert(image)
image.touch = onSceneTouch
end
如您所见,我必须对"scene001.json"
. 我想加载一个与当前故事板同名的配置文件,我该如何动态地做到这一点?