私はトルネードを使用しており、次のコードがあります。
class UserHandler(RequestHandler):
def get(self):
user = self.get_argument("username")
self.set_cookie("user", user)
out = tableize(user)
self.render('chat.html',table=out)
これで、chatter.html は次のようになります。
<iframe src="{{ static_url('mess.html') }}" width="500" height="400"></iframe>
場所mess.htmlは次のとおりです。
<div id="chat">
{% for x in table %}
<b> x </b>
{% end %}
</div>
私の質問は、「テーブル」引数をmess.htmlに渡すにはどうすればよいですか? うまく表示させる方法がわかりません。