2017-10-16 10 views
0
network.download( url, "GET", function(e) 
if (e.isError == false) then 
    print("Download Successful") 

    -- get the path of the downloaded file 
    local path = system.pathForFile("MyModule.lua" , system.TemporaryDirectory) 

    -- Replace "/" with "." because that's how "require" works 
    local newPath = string.gsub(path, "/", ".") 

    -- Load the module 
    local m = require (newPath) <<-- Error! 

end 
end, "MyModule.lua", system.TemporaryDirectory) 

ご覧のとおり、私はURLからモジュールをダウンロードしようとしています。ファイルが実際にダウンロードされたが、require機能を使用して、それをロードしようとしたとき、私はこのエラーを取得します:URLを使用したモジュールのダウンロード

File: module '<<path of the file>>.tmp.MyModule.lua' not found 

答えて

関連する問題