mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2024-12-26 17:38:21 +01:00
fix utf8 pb
This commit is contained in:
parent
ac99eedc71
commit
9844bdebd6
10
APIs/std.lua
10
APIs/std.lua
@ -38,14 +38,14 @@ function std.cjson(ck)
|
||||
for k,v in pairs(ck) do
|
||||
std.setCookie(k.."="..v.."; Path=/")
|
||||
end
|
||||
std.header("Content-Type","application/json")
|
||||
std.header("Content-Type","application/json; charset=utf-8")
|
||||
std.header_flush()
|
||||
end
|
||||
function std.chtml(ck)
|
||||
for k,v in pairs(ck) do
|
||||
std.setCookie(k.."="..v.."; Path=/")
|
||||
end
|
||||
std.header("Content-Type","text/html")
|
||||
std.header("Content-Type","text/html; charset=utf-8")
|
||||
std.header_flush()
|
||||
end
|
||||
function std.t(s)
|
||||
@ -83,16 +83,16 @@ end
|
||||
end ]]
|
||||
|
||||
function std.html()
|
||||
std.header("Content-Type","text/html")
|
||||
std.header("Content-Type","text/html; charset=utf-8")
|
||||
std.header_flush()
|
||||
end
|
||||
function std.text()
|
||||
std.header("Content-Type","text/plain")
|
||||
std.header("Content-Type","text/plain; charset=utf-8")
|
||||
std.header_flush()
|
||||
end
|
||||
|
||||
function std.json()
|
||||
std.header("Content-Type","application/json")
|
||||
std.header("Content-Type","application/json; charset=utf-8")
|
||||
std.header_flush()
|
||||
end
|
||||
function std.jpeg()
|
||||
|
Loading…
Reference in New Issue
Block a user