タイトル: GETとPOSTパラメータ受け取り
SEOタイトル: djangoでGETとPOSTパラメータ受け取る方法
GET
val1 = int(request.GET['val1']) |
POST
val1 = int(request.POST['val1']) |