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