随笔分类 -  框架-Django REST

摘要:参考: # 安装 pip install djangorestframework pip install django-redis # 调试 http #官网教程1,pip install httpie 可以用来调试http https://blog.csdn.net/ppppfly/article 阅读全文
posted @ 2021-01-23 20:49 该显示昵称已被使用了 阅读(127) 评论(0) 推荐(0)
摘要:request # request 使用 # 1 request.POST # 只能处理表单(form)数据,只能处理“POST”方法. - a = request.POST.get('a', 0) 获取提交表单的a的数据 - 客户端:curl -X POST -d "a=11" -d "b=12" 阅读全文
posted @ 2020-12-06 10:47 该显示昵称已被使用了 阅读(101) 评论(0) 推荐(0)