python
文章平均质量分 79
cpk154505
这个作者很懒,什么都没留下…
展开
-
django 加载静态文件
在使用Django开发的Web项目中是避免不了使用css、javascript、js等静态文件的,而对于这些静态文件的处理,django官 网这样写:Django itself doesn’t serve static (media) files, such as images, style sheets, or video. It leaves that job to whichever Web转载 2013-04-07 14:28:23 · 1896 阅读 · 0 评论 -
Django - staticfiles,STATIC_ROOT, STATIC_URL,STATICFILES_DIRS
staticfiles:这是一个静态资源管理的app,django.contrib.staticfiles。老的版本中,静态资源管理一直是一个问题,部分app发布的时候需要带上静态资源,在部署的时候必须将每个app存在的static静态资源复制到同一个static目录。引入staticfiles之后,执行命令:python manage.py collectstatic 就可以方便的将所用到的ap转载 2013-04-07 14:26:45 · 7624 阅读 · 0 评论 -
python装饰器
python中最不想python风格的就是装饰器了,特别是‘@’很令新来python的人费解,不过装饰器可是很强大的功能。 装饰器语法有两种,类风格和函数风格 类风格例子: Python代码 class entryExit(object): def __init__(self, f): self.f =转载 2013-04-19 10:39:29 · 697 阅读 · 1 评论 -
收集了一些python的文章(太牛了)
newthreading - safer concurrency for Python 安全并发(1回应) http://www.starming.com/index.php?action=plugin&v=wave&tpl=union&ac=viewgrouppost&gid=73&tid=7607 几个 Google App Engine 开源的Blog程序 http://www.转载 2013-04-19 10:40:38 · 1174 阅读 · 0 评论