我正在尝试以下列方式使用iframe:
<iframe src="????" width="350" height="500"></iframe>
Tornado服务器的外观如下:
class FrameHandler(RequestHandler):
def get(self):
user = self.get_argument("username")
self.set_cookie("user", user)
out = tableizer(user)
self.render('messages.html',table=out)
application = tornado.web.Application(
[
(r"/frame", FrameHandler),
],
debug=True,
template_path=os.path.join(os.path.dirname(__file__), ""),
static_path=os.path.join(os.path.dirname(__file__), "static"),
)
如何让我的iframe显示messages.html?
答案 0 :(得分:0)
处理程序看起来不错。您只需要替换
中的????
<iframe src="????" width="350" height="500"></iframe>
使用:
<iframe src="/frame?user=whoever" width="350" height="500"></iframe>