예제 #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
 def render_json(self, value):
     """
     Render the object as json response.
     """
     self.set_header('Content-Type', 'application/json')
     self.write(to_json(value))