ãªã©ã¤ãªã¼æ¬ã®ãµã³ãã«ãããã£ã
Michael Dory ã® Introduction to Tornado ã Amazon ã§ãã§ãã¯ï¼ http://www.amazon.co.jp/gp/product/B007NHKVL6?ie=UTF8&camp=1207&creative=8411&creativeASIN=B007NHKVL6&linkCode=shr&tag=noctushinrsdi-22
ã»json_test.py
import os.path import tornado.httpserver import tornado.ioloop import tornado.options import tornado.web import json from tornado.options import define, options define("port", default=8000, help="run on the given port", type=int) class IndexHandler(tornado.web.RequestHandler): def get(self): self.render('index.html') class JsonPageHandler(tornado.web.RequestHandler): def post(self): noun1 = self.get_argument('noun1') noun2 = self.get_argument('noun2') noun3 = self.get_argument('noun3') verb = self.get_argument('verb') obj = { 'noun1': noun1, 'noun2': noun2, 'verb': verb, 'noun3': noun3, } # self.write(json.JSONEncoder().encode(obj)) my_json = json.dumps(obj, ensure_ascii=False) self.write(my_json) if __name__ == '__main__': tornado.options.parse_command_line() app = tornado.web.Application( handlers=[(r'/', IndexHandler), (r'/poem', JsonPageHandler)], template_path=os.path.join(os.path.dirname(__file__), "templates") ) http_server = tornado.httpserver.HTTPServer(app) http_server.listen(options.port) tornado.ioloop.IOLoop.instance().start()
ã»index.html
<!DOCTYPE html> <html> <head><title>Poem Maker Pro</title></head> <body> <h1>Enter terms below.</h1> <form method="post" action="/poem"> <p>Plural noun<br><input type="text" name="noun1"></p> <p>Singular noun<br><input type="text" name="noun2"></p> <p>Verb (past tense)<br><input type="text" name="verb"></p> <p>Noun<br><input type="text" name="noun3"></p> <input type="submit"> </form> </body> </html>
ã»çµæ
{"noun1": "noun1ã ã", "noun2": "noun2ã ã", "noun3": "noun3ã ã", "verb": "Verbã ã"}
â»ãããªã£ãã
注æ
self.write(json.JSONEncoder().encode(obj))
ä¸ã®ããã«ããã¨ã
âã®ããã«æ¥æ¬èªãã¨ã¹ã±ã¼ããããã®ã§ã
{"verb": "Verb\u3060\u3059", "noun1": "noun1\u3060\u304a", "noun2": "noun2\u3060\u304a", "noun3": "noun3\u3060\u304a"}
ãã®ãµã¤ããåèã«ããã
URL: http://iyukki.blog56.fc2.com/blog-entry-137.html