1

我对Lua很陌生。我试图自己解决以下问题,但我无法弄清楚。这是我的问题:

我在我的 NodeMCU devkit v0.9 上运行一个 Web 服务器。我可以在自己的计算机上轻松访问 Web 服务器,但如果我尝试通过 iPhone 访问服务器或使用requestsPython 中的模块,我总是会收到消息The network connection was lost.我正在使用以下固件:nodemcu_float_0.9.6-dev_20150704。

print(wifi.sta.getip())
led1 = 3
led2 = 4
gpio.mode(led1, gpio.OUTPUT)
gpio.mode(led2, gpio.OUTPUT)
srv=net.createServer(net.TCP,30)
srv:listen(80,function(conn)
    conn:on("receive", function(client,request)
    local buf = "";
    local _, _, method, path, vars = string.find(request, "([A-Z]+) (.+)?(.+) HTTP");
    if(method == nil)then
        _, _, method, path = string.find(request, "([A-Z]+) (.+) HTTP");
    end
    local _GET = {}
    if (vars ~= nil)then
        for k, v in string.gmatch(vars, "(%w+)=(%w+)&*") do
            _GET[k] = v
        end
    end
    buf = buf.."<h1> ESP8266 Web Server</h1>";
    buf = buf.."<p>GPIO0 <a href=\"?pin=led1\"><button>SWITCH LIGHTS</button></a></p>";
    buf = buf.."<p>"..gpio.read(led1).."</p>";
    local _on,_off = "",""
    if(_GET.pin == "led1")then
        if(gpio.read(led1) == 1) then
            gpio.write(led1, gpio.LOW);
        else 
            gpio.write(led1, gpio.HIGH);
        end
    else end
    client:send(buf);
    client:close();
    end)
end)
4

1 回答 1

2

我能够通过在 html 缓冲区的开头添加一些信息来解决这个问题。替换:local buf=''local buf="HTTP/1.1 200 OK\r\nContent-type: text/html\r\nConnection: close\r\n\r\n"

我想桌面浏览器在这方面更加宽容。

于 2016-05-09T02:36:43.297 回答