2019年11月21日
摘要: 在新建的Django项目下,新建一个views的python文件,编辑如下代码 from django.http import HttpResponse def hello(request): return HttpResponse("hello word") 逐行分析: 先导包 定义视图函数,函数 阅读全文
posted @ 2019-11-21 18:08 Lverson_tester 阅读(121) 评论(0) 推荐(0) 编辑