摘要: 本节内容 学员管理系统练习 Django ORM操作进阶 用户认证 Django练习小项目:学员管理系统设计开发 带着项目需求学习是最有趣和效率最高的,今天就来基于下面的需求来继续学习Django 项目需求: 常用ORM操作 创建 1 2 3 >>> from blog.models import  阅读全文
posted @ 2017-08-09 19:45 luobo_busy 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Django流程介绍 Django url Django view Django models Django template Django form Django admin Django流程介绍 Django URL Example¶ Here’s a sample URLconf: 1 2 3 阅读全文
posted @ 2017-08-09 14:30 luobo_busy 阅读(103) 评论(0) 推荐(0) 编辑
摘要: python3中urllib2被整合成了url.request和url.error了 阅读全文
posted @ 2017-05-13 13:13 luobo_busy 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 作业要求: 阅读全文
posted @ 2017-01-05 11:29 luobo_busy 阅读(102) 评论(0) 推荐(0) 编辑
摘要: #coding: utf-8 class Member(object): member_nums = 0 def __init__(self,name,age,sex): self.name = name self.age = age self.sex = sex self.enroll() def 阅读全文
posted @ 2017-01-05 11:26 luobo_busy 阅读(111) 评论(0) 推荐(0) 编辑