前置作業:
接下來會操作到 JSON 物件,需要用到 Python 內建 JSON 模組,記得將它載入,如下:
import json
輸出 JSON 資料:
基本上輸出 JSON 格式資料的做法 GET 與 POST 的方式是一樣的,接下來將以 POST 方法做示範:
class YourHandler(webapp2.RequestHandler):
def post(self):
myjson = {
"name": "John",
"age": "19"
}
self.response.headers['Content-Type'] = 'application/json'
self.response.out.write(json.dumps(myjson))
Environment :
・ Arch Linux
・ Python 2.7
Reference :
・ Webapp2 official site
・ Response Attributes