摘要:
阅读全文
摘要:
在页面上我们只要这么写就可以直接把字典的值显示出来了 {{ obj.get_level_display }}({{ obj.level }}) obj.get_字段名称_display 。 models中的choices字段 由元素为2-tuples的序列(list或者tuple)作为字段的choi 阅读全文
摘要:
本节内容 算法定义 时间复杂度 空间复杂度 常用算法实例 1.算法定义 算法(Algorithm)是指解题方案的准确而完整的描述,是一系列解决问题的清晰指令,算法代表着用系统的方法描述解决问题的策略机制。也就是说,能够对一定规范的输入,在有限时间内获得所要求的输出。如果一个算法有缺陷,或不适合于某个 阅读全文
摘要:
一、项目需求(使用PrecessOn) 二、models.py from django.db import models from django.contrib.auth.models import User # Create your models here. class Customer(mod 阅读全文
摘要:
url.py 1 from django.db import models 2 3 class Direction(models.Model): 4 weight = models.IntegerField(verbose_name='权重(按从大到小排列)', default=0) 5 name 阅读全文
摘要:
网络爬虫(又被称为网页蜘蛛,网络机器人,在FOAF社区中间,更经常的称为网页追逐者),是一种按照一定的规则,自动地抓取万维网信息的程序或者脚本。另外一些不常使用的名字还有蚂蚁、自动索引、模拟程序或者蠕虫。 Requests Python标准库中提供了:urllib、urllib2、httplib等模 阅读全文
摘要:
模板 1、模版的执行 模版的创建过程,对于模版,其实就是读取模版(其中嵌套着模版标签),然后将 Model 中获取的数据插入到模版中,最后将信息返回给用户。 def current_datetime(request): now = datetime.datetime.now() html = "<h 阅读全文
摘要:
views.py url.py index.html 阅读全文