Gray sky, Blue sea.

programing, book, photo

2012-02-08から1日間の記事一覧

gaeでError: The check_login decorator can only be used for GET requests

そのまんま、@login_requiredアノテーションはdef get(self):の前でないと使えないということ。 def post(self):の前に付けると出る。

gaeでTemplateSyntaxError: Could not parse the remainder: ()

djangoテンプレートのメソッド呼び出し方法間違い。 {{ foo.getBar() }} --> {{ foo.getBar }} みたいな感じで()をとればなおる。