使用lua脚本获取网页的源代码(html)

时间:2015-10-02 12:49:46

标签: sockets web lua

如何通过Lua脚本及其库来获取网页(html)的源代码,例如' socket.http'。 我想在网页的源代码中提取部分代码。 感谢。

1 个答案:

答案 0 :(得分:0)

LuaSocket manual

中介绍了这一点

这将获取您正在阅读的页面的“源代码”:

 local http = require 'socket.http'
 local res, code, headers, status = 
        http.request 'http://stackoverflow.com/q/32907568/501459'
 print(res)