クエリーのパラメーターに応じてレスポンスが変化
クエリ例 http://localhost:8000/hello/?msg=123&msg2=456
1 2 3 4 5 6 7 8 |
def top(request): if 'msg' in request.GET: msg = request.GET['msg'] msg2 = request.GET['msg2'] return HttpResponse('you typed: "'+ msg +'and'+ msg2 ) else: result = 'please sen msg parameter' return HttpResponse(result) |
ページにアクセスすると
you typed: “123and456
と表示
コメントを残す