美文网首页
004_django开发GET接口

004_django开发GET接口

作者: 广州_ming | 来源:发表于2019-06-28 22:18 被阅读0次

1、修改views.py信息

from __future__ import unicode_literals

from django.shortcuts import render
from django.http.response import HttpResponse
from django.shortcuts import render_to_response

# Create your views here.
def Login(request):
    if request.method == 'GET':
        username = request.GET.get('username')
        return HttpResponse(username)
    else:
        return render_to_response('login.html')

2、启动服务器,并打开浏览器访问

# python manage.py runserver 8001
访问结果.png

3、在浏览器中输入信息

在浏览器地址中加入?username=xxx,点击回车,页面会显示输入的信息,但是使用此方法,一次只能访问一个参数,需要用python序列化来访问多个参数的界面


image.png

相关文章

网友评论

      本文标题:004_django开发GET接口

      本文链接:https://www.haomeiwen.com/subject/whokcctx.html