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.
Django でユーザーを同じページに戻したい場合のオプションと、それぞれの長所と短所は何ですか?
私が知っている方法:
他にもありますか?
方法の1つは、次のようにHTTP_REFERERヘッダーを使用することです。
HTTP_REFERER
from django.http import HttpResponseRedirect def someview(request): ... return HttpResponseRedirect(request.META.get('HTTP_REFERER'))
これの短所はわかりません!