mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Use RFC 4627 MIME type for JSON in examples
The MIME media type for JSON is application/json with default encoding is UTF-8, according to RFC 4627.
This commit is contained in:
parent
6a88e23e53
commit
bc37b0bf75
@ -56,7 +56,7 @@ end
|
||||
|
||||
local response_body = json.stringify(response_table)
|
||||
mg.write("HTTP/1.1 " .. http_status .. "\r\n")
|
||||
mg.write("Content-Type: application/javascript; charset=UTF-8\r\n")
|
||||
mg.write("Content-Type: application/json; charset=UTF-8\r\n")
|
||||
mg.write("Content-Length: ".. #response_body .."\r\n")
|
||||
mg.write("\r\n")
|
||||
mg.write(response_body)
|
||||
|
Loading…
x
Reference in New Issue
Block a user