私はLuaとNodeMCUボードを使用している小さなプロジェクトに取り組んでいますが、私は両方のトピックの初心者です。複数のユーザーがNodeMCUに接続しようとすると問題が発生する
私はデバイスにボタンが付いています。私がやりたいことは基本的に手動認証です。ユーザがnodeMCU上のサーバに接続すると、制御ページが表示され、ボタンを押してページを更新し、デバイスにロードしたWebページを表示する必要があります。
私が今行っている問題は、1人のユーザーがボタンを押した後で、サーバーに接続するすべての新規ユーザーが完全に最初の段階をスキップしてWebページに直接接続することです。
私はいくつかの解決策を試してきましたが、実際には何も解決しませんでした。私は一人のユーザがある種類のセッショントークンとして動作するボタンを押した後に文字列を初期化することを考えていましたが、実際に動作するかどうかはわかりません。 簡単な解決法はありますか?ここで
は、これまでの私のコードです:
auth.lua
srv=net.createServer(net.TCP)
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.."<html><body>"
buf = buf.."<h1> Control Web Server</h1>";
buf=buf.."<p> Press the button attached to the device and click below</p>"
buf=buf.."<p><button onclick=\"history.go(0)\">ADVANCE</button></p>"
buf = buf.."</form></body></html>"
local _on,_off = "",""
gpio.mode(1 ,gpio.INPUT,gpio.PULLUP)
function debounce (func)
local last = 0
local delay = 200000
return function (...)
local now = tmr.now()
if now - last < delay then return end
last = now
return func(...)
end
end
function onChange()
if gpio.read(1) == 0 then
assert(loadfile("server.lua"))
tmr.delay(500000)
end
end
gpio.trig(1,"down", debounce(onChange))
client:send(buf);
client:close();
collectgarbage();
end)
end)
server.lua
srv:listen(80,function(conn)
conn:on("receive", function(client,payload)
tgtfile = string.sub(payload,string.find(payload,"GET /")
+5,string.find(payload,"HTTP/")-2)
if tgtfile == "" then tgtfile = "index.htm" end
local f = file.open(tgtfile,"r")
if f ~= nil then
client:send(file.read())
file.close()
else
client:send("<html>"..tgtfile.." not found - 404 error.<BR><a href='index.htm'/<%= @a %>>Home</a><BR>")
end
client:close();
collectgarbage();
f = nil
tgtfile = nil
end)
end)
NodeMCUのどのバージョンを使用していますか? –
ボードはdevkit 1.0です。 私はカスタムファームウェア1.5.4.1を使用しています – Kegluneq