摘要: 添加记录: 添加记录方式1: Book.objects.create(title="三体",....) 添加记录方式2: book=Book(title="三体",....) book.save() 1 查询记录: 查询API: 1 Book.objects.all() # querysey [ob 阅读全文
posted @ 2018-08-06 21:37 kingon 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 1.视图 1. CBV 和 FBV from django.views import View class AddPublisher(View): def dispatch(self, request, *args, **kwargs): ret = super().dispatch(request 阅读全文
posted @ 2018-08-06 19:21 kingon 阅读(205) 评论(0) 推荐(0) 编辑