django1.5学习笔记(1)

还是忍不住新东西的诱惑,从1.3升级到了1.5

学习主要还是看https://www.djangoproject.com/,不得不赞一个,我之前学习其它pythob 框架,学习文档是影响走下去的一个大方面,小手的英文渣到爆。只有这个文档写的简单

易懂(用google翻译就能看懂)。

首先:升到1.5后 应用程序的文件架构与1.3有点不同:(doc中的例子)(如果你有一个project叫mysite,项目中有一个叫polls的app,文档结构应如下):

mysite/
    manage.py
    mysite/
        __init__.py
        settings.py
        urls.py
        wsgi.py
    polls/
        admin.py
        __init__.py
        models.py
        static/
            polls/
                images/
                    background.gif
                style.css
        templates/
            polls/
                detail.html
                index.html
                results.html
        tests.py
        urls.py
        views.py
    templates/
        admin/
            base_site.html
2. Django默认在每一个app下找"templates"文件夹做为模板调用所需,即使我们没有修改TEMPLATE_DIRS


你可能感兴趣的:(pytho,django)