Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
request.POST と request.GET のパラメーターは request.REQUEST の両方ですか? または、それぞれを確認する必要がありますか?
REQUEST/QueryDict の両方のドキュメントに明確な情報が見つかりません。注意: Django 1.4 Final
これを試して:
name = request.GET.get('name', request.POST.get('name'))