mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2024-12-28 18:38:20 +01:00
17 lines
449 B
Lua
17 lines
449 B
Lua
if SESSION.sessionid ~= nil and SESSION.sessionid ~= '0' then
|
|
local cookie = {sessionid='0'}
|
|
local db = sysdb()
|
|
if db ~= nil then
|
|
--local data = db:find("sessionid ='"..SESSION.sessionid.."'")
|
|
--if data and data[0] ~= nil then
|
|
-- db:delete(data[0].id)
|
|
--end
|
|
local cond = {["="] = { sessionid = SESSION.sessionid }}
|
|
db:delete(cond)
|
|
db:close()
|
|
end
|
|
std.cjson(cookie)
|
|
else
|
|
std.json()
|
|
end
|
|
std.t(JSON.encode({error=false,result=true})) |