23
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Djangoでログインユーザの情報をビューに渡す

Last updated at Posted at 2017-01-28

フォームでログインユーザのidを渡す時に詰まったのでメモ

#前提
Djangoのバージョンは1.10。

ログインユーザのサインインやログイン等については以下を参考に実装。
Djangoがデフォルトで用意しているdjango.contrib.auth.models、django.contrib.auth.viewsを利用している。

http://qiita.com/maueki/items/d28fd2a170d42e745376
http://nwpct1.hatenablog.com/entry/django-oauth-twitter-facebook-github

#ビューにログインユーザの情報を渡す方法
ここでは例としてログインユーザのidを渡す

views.py
...
from django.contrib.auth.models import User
...

def test(request):
    login_user_id = request.user.id
    ...

以下はPOSTでテンプレートから受け渡された情報と同時にログインユーザのIDをsaveする一例。

views.py
...
from django.contrib.auth.models import User
...
def test(request):
    if request.method == 'POST':
        form = TestForm(request.POST)
        if form.is_valid():
            test = form.save(commit=False)
            test.user_id = request.user.id
            test.save()
            return redirect('apps:templates')
    else:
            form = TestForm()

たったこれだけだが、めちゃくちゃ時間がかかってしまった…

23
27
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?