我自己搭建的网络请求,在网页和postman上都可以正常返回(返回值为文本数据:"123").但是通过调用网络函数httpGet或者socket函数http.request(""),拿到的返回值是乱码(口口口)。具体代码如下:
-----测试网络1
url = "http://47.99.133.3:21771/automation/authorityQuerry"
local http = require("socket.http")
http.TIMEOUT = 20 --设置超时时间
ret = http.request(url)
logDebug("http.request"..ret);
-----测试网络2
ret= httpGet(url)
logDebug("httpGet"..ret);