Entries from 2015-08-30 to 1 day

Django の render, render_to_response, HttpResponse の違い

render と render_to_response は、いずれも HttpResponse オブジェクトを返すショートカットのラッパーメソッドです。ポイント 大きな違いは HttpRequset クラスの request オブジェクトをどのように渡すか渡さないかにあります。 ① 書き方の違い view.py …

Django の urls.html の name, namespace

Reverse for 'index' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: [] 的なエラーがでてきてなかなか辛かったので備忘録です (´・ω・`)Django の Tutorial ではいずれも同じ意味を成します。 <li><a href="/polls/{{ question.id }}/"> {{ question.question_tex</a></li>…