コード例 #1
0
ファイル: framework.py プロジェクト: rjuju/powa-web
 def render_json(self, value):
     """
     Render the object as json response.
     """
     self.set_header('Content-Type', 'application/json')
     self.write(to_json(value))
コード例 #2
0
ファイル: framework.py プロジェクト: Ishanroy1892/powa-web
 def render_json(self, value):
     """
     Render the object as json response.
     """
     self.set_header('Content-Type', 'application/json')
     self.write(to_json(value))