我正在尝试下载然后将内容保存到 xml 文件中。我得到的代码是:
local filePath = currentDir().."/file.xml"
local http = require("socket.http")
local xFile = io.open(filePath, "w")
local save = ltn12.sink.file(xFile)
http.request{addr, sink = save }
print("Done!")
它运行但文件仍然是空的。我可以在这里得到一些帮助吗?