タイトル: viewからtemplateへの遷移方法
SEOタイトル: 【django】viewからtemplateへの遷移方法(パラメータありなし)
単なるリダイレクト
from django.shortcuts import redirect return redirect('index.html') |
パラメータなしテンプレート表示
from django.shortcuts import redirect return render(request, 'index.html') |
パラメータありテンプレート表示
from django.shortcuts import render def index(request): item_list = ['a', 'b', 'c'] return render(request, 'index.html', context) |