andlua发送http请求,并解析json实例 import'cjson'import 'http'--导入cjson库url = 'https://www.baidu,com'--设置urlHttp.get(url,nil,'utf8',nil,function(状态码,网页源码)--判断返回状态码,确定网站的正常运行 if 状态码 ==200 then --使用cjson库将获取到的json数据table化 数据 = cjson.decode(网页源码) --取出需要的数据 数据列表 =…