gpt4 book ai didi

php - Lua发送json请求体

转载 作者:可可西里 更新时间:2023-11-01 16:37:07 26 4
gpt4 key购买 nike

我是 LUA 的新手,我正在尝试使用 LUA 从我的 ESP8266 发送一个 json post 到我本地主机上的 PHP 服务器,我搜索了互联网,但我找不到任何例子可以做到这一点,有人可以帮助我吗?

我的 LUA 代码

-- tested on NodeMCU 0.9.5 build 20141222...20150108
-- sends connection time and heap size to http:server.php
wifi.setmode(wifi.STATION)
wifi.sta.config("VIVA-4G-LTE-6134","VIVA176429")
--wifi.sta.config("AndroidAP","rapz4736")

print('httpget.lua started')
Tstart = tmr.now()

conn = nil
conn = net.createConnection(net.TCP, 0)

-- show the retrieved web page

conn:on("receive", function(conn, payload)
success = true
print(payload)
end)

-- once connected, request page (send parameters to a php script)

conn:on("connection", function(conn, payload)
print('\nConnected')
conn:send("POST /server.php?"
.."name=mometto"
.."&age=27"
.." HTTP/1.1\r\n"
.."Host: 172.0.0.1\r\n"
.."Connection: close\r\n"
.."Accept: */*\r\n"
.."User-Agent: Mozilla/4.0 "
.."(compatible; esp8266 Lua; "
.."Windows NT 5.1)\r\n"
.."\r\n")
-- conn:send("what":"books", "count":3 )
end)

-- when disconnected, let it be known
conn:on("disconnection", function(conn, payload) print('\nDisconnected') end)

conn:connect(80,'192.168.43.181')

我在这里很容易发送参数,但是当我想发送请求体时我不能,我尝试添加这段代码来发送请求体

conn:send("what":"books", "count":3 )

但是没有效果我收到这条消息: enter image description here

那么有人可以为我提供帮助吗?

最佳答案

所以,首先,这是字典的无效 Lua 代码。其次,如果您想发送 JSON,则需要使用 cjson 模块对其进行编码。

尝试类似的东西

local msg = {"what":"books", "count":3}
conn:send(cjson.encode(msg))

关于php - Lua发送json请求体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33456237/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com