sheepbao 发表于 2015-6-24 23:30

openwrt 里LUA程序怎么获取POST数据?

openwrt 里LUA程序怎么获取POST数据?
系统:openwrt
lua 是否直接调用luci.http.formvalue()就可以直接获得post的值?
该怎么测试呢?
我的尝试:在/web/luatest/ 建立test.lua 内容为:
#!/usr/bin/lua
local h = require "luci.http"
local info =assert( h.formvalue("a"),test)
http.write("Content-type: text/html\r\n\r\n")
http.write("a is:"..info)

然后再浏览器输入http://192.168.10.1:88/luatest/test.lua?a=1
却报错bad gateway
谢谢!感激不尽
页: [1]
查看完整版本: openwrt 里LUA程序怎么获取POST数据?