-2
如何通過Lua腳本及其類庫'socket.http'獲取網頁源代碼(html)。 我想提取網頁源代碼中的部分代碼。 謝謝。如何通過lua腳本獲取網頁源代碼(html)
如何通過Lua腳本及其類庫'socket.http'獲取網頁源代碼(html)。 我想提取網頁源代碼中的部分代碼。 謝謝。如何通過lua腳本獲取網頁源代碼(html)
這包括在LuaSocket manual。
這將獲取你現在正在閱讀的頁面的「源代碼」:
local http = require 'socket.http'
local res, code, headers, status =
http.request 'http://stackoverflow.com/q/32907568/501459'
print(res)
感謝您的幫助。 – 3kanjbeen