3

我一直在阅读 NodeMCU 文档和几个关于 SDK 更改的已解决问题,这些问题以前允许发送多个数据流(就像排队的 net.socket:send 一样)。

似乎在这里(#730)和那里(#993)甚至这里(#999)引发了一场巨大的争论。但是,我没有找到任何令人信服的网络服务器代码示例,它允许我读取多个 html 文件(例如head.htmlbody.html)来显示一个页面。这是我尝试改编的来自 TerryE 的示例,但没有成功:

srv=net.createServer(net.TCP)
srv:listen(80,function(conn)
    conn:on ("receive", function(sck, req)
        local response = {}

        local f = file.open("head.html","r")
        if f ~= nil then
            response[#response+1] = file.read()
            file.close()
        end

        local f = file.open("body.html","r")
        if f ~= nil then
            response[#response+1] = file.read()
            file.close()
        end

        local function sender (sck)
            if #response>0 then sck:send(table.remove(response,1))
            else sck:close()
            end
        end
        sck:on("sent", sender)
        sender(sck)
    end )
end )

连接到 ESP8266 时,没有加载任何内容,并且我从 lua 终端没有收到任何错误。

供您参考,head.html包含:

<html>
<head>
</head>

body.html包含:

<body>
<h1>Hello World</h1>
</body>
</html>

我对NodeMCU很陌生,请多多包涵。

4

2 回答 2

3

这是我不使用表格的解决方案,节省了一些内存:

function Sendfile(sck, filename, sentCallback)
    if not file.open(filename, "r") then
        sck:close()
        return
    end
    local function sendChunk()
        local line = file.read(512)
        if line then 
            sck:send(line, sendChunk) 
        else
            file.close()
            collectgarbage()
            if sentCallback then
                sentCallback()
            else
                sck:close()
            end
        end
    end
    sendChunk()
end


srv = net.createServer(net.TCP)
srv:listen(80, function(conn)
    conn:on("receive", function(sck, req)
        sck:send("HTTP/1.1 200 OK\r\n" ..
            "Server: NodeMCU on ESP8266\r\n" ..
            "Content-Type: text/html; charset=UTF-8\r\n\r\n", 
            function()
                Sendfile(sck, "head.html", function() Sendfile(sck, "body.html") end)
            end)        
    end)
end)

这是用于提供单个文件:

function Sendfile(client, filename)
    if file.open(filename, "r") then
        local function sendChunk()
            local line = file.read(512)
            if line then 
                client:send(line, sendChunk) 
            else
                file.close()
                client:close()
                collectgarbage()
            end
        end
        client:send("HTTP/1.1 200 OK\r\n" ..
            "Server: NodeMCU on ESP8266\r\n" ..
            "Content-Type: text/html; charset=UTF-8\r\n\r\n", sendChunk)
    else
        client:send("HTTP/1.0 404 Not Found\r\n\r\nPage not found")
        client:close()
    end
end


srv = net.createServer(net.TCP)
srv:listen(80, function(conn)
    conn:on ("receive", function(client, request)
        local path = string.match(request, "GET /(.+) HTTP")
        if path == "" then path = "index.htm" end
        Sendfile(client, path)
    end)
end)
于 2016-03-23T01:01:07.487 回答
1

感谢您的答复。我实际上添加了你提到的标题,我不知道这是必要的,我还删除了sck函数中的参数sender。我的第一个代码实际上正在运行,我不知道上次出了什么问题。

无论如何,它帮助我理解了发生了什么:以下代码似乎连接了response数组,因为sent 套接字事件回调sender函数 ( sck:on("sent", sender))

sck:send(table.remove(response,1))

实际上,table.remove(array, 1)返回数组的第一项,并删除数组的该项。多次调用此行具有逐项阅读的效果。

为简单起见,这里是一个能够提供多个文件的简单网络服务器的代码:

header = "HTTP/1.0 200 OK\r\nServer: NodeMCU on ESP8266\r\nContent-Type: text/html\r\n\r\n"
srv=net.createServer(net.TCP)
srv:listen(80,function(conn)
    conn:on ("receive", function(sck, req)
        local response = {header}

        tgtfile = string.sub(req,string.find(req,"GET /") +5,string.find(req,"HTTP/") -2 )
        if tgtfile == "" then tgtfile = "index.htm" end
        local f = file.open(tgtfile,"r")
        if f ~= nil then
            response[#response+1] = file.read()
            file.close()
        else
            response[#response+1] = "<html>"
            response[#response+1] = tgtfile.." not Found - 404 error."
            response[#response+1] = "<a href='index.htm'>Home</a>"
        end
        collectgarbage()
        f = nil
        tgtfile = nil

        local function sender ()
            if #response>0 then sck:send(table.remove(response,1))
            else sck:close()
            end
        end
        sck:on("sent", sender)
        sender()
    end)
end)

这个例子取自这个instructables并修复了新的SDK(不再允许多个:send)。请让我知道此代码是否有问题。

我不知道文件的大小限制是多少。尽管如此,我设法将超过 2Ko 附加到response变量并立即发送它而没有任何问题。

于 2016-03-18T22:36:27.433 回答