Python爬虫实战笔记_4-1 Django Entrance

Step by step, my first django app
  1. Django startproject.
$ django-admin startproject mysite
  1. Django startapp.
$ cd mysite
$ python3 manage.py startapp myapp ### 环境中2.7与3.5版本并存,这里需要指明python3
  1. Go to pycharm, find settings.py, add app name 'myapp' into INSTALLED_APPS list.
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'myapp',  ###
]
  1. Create a new directory 'templates'(与manage.py同级), and add this directory into settings.py.
    If 'APP_DIRS' is True,It tells Django engine that you should look for templates inside installed applications besides the base DIR. If False, then the engine only search mysite/templates.
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR), 'templates'],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]
  1. New a file 'index.html' under 'templates'. Design it.
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <div class="header">
        Welcome Django!
    </div>
    <div class="footer">
        <p></p>
    </div>
</body>
</html>
  1. In views.py, define a function. It will return a rendered html
def menublog(request):
        return render(request, 'index.html')
  1. Go to urls.py, define the url to lead all urls beginning with 'index' to 'menublog' defined in vews.py
from myapp.views import menublog
urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^index/', menublog)
]
  1. python manage.py runserver
python3 manage.py migrate
python3 manage.py runserver localhost:9001
  1. visit 'http://localhost:9001/index/' and 'Welcome Django!' will show on your browser.

Congratulations!

关联templates与静态资源如CSS, img
  1. settings.py中添加静态资源的路径
STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)
  1. 新建一个与manage.py同级的目录名称为"static"
    此目录下存放CSS, img等资源。

  2. 在templates 中引用静态资源
    index.html的第一行添加如下语法加载静态资源,同时将资源的引用路径都替换为src="{% static 'images/0001.jpg' %}"类似的格式。

{% load static %}
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>The blah</title>
    <link rel="stylesheet" type="text/css" href="{% static 'css/homework.css' %}">
</head>
<body>
    <div class="header">
        ![]({% static 'images/blah.png' %})
        <ul class="nav">
            <li><a href="#" >home</a></li>
            <li><a href="#" >site</a></li>
            <li><a href="#" >other</a></li>
        </ul>
    </div>
    <div class="main-content">
        <h2>The Beach</h2>
        <hr>
        <ul class="photos">
            <li>
                ![]({% static 'images/0001.jpg' %})
            </li>
            <li>
                ![]({% static 'images/0004.jpg' %})
            </li>
            <li>
                ![]({% static 'images/0003.jpg' %})
            </li>
        </ul>
        <p>
            stretching from Solta to M1jets
        </p>
    </div>
    <div class="footer">
        <p>© Mugglecoding</p>
    </div>
</body>
</html>
Connect model

这一步实现从数据库中获取数据并填充到templates的指定位置。

  1. pip install mongoengine
  2. in setting.py, connect your model
# website是目标数据库的名字
from mongoengine import connect
connect('website', host='127.0.0.1', port=27017)
  1. go to models.py to define your own model
from django.db import models
from mongoengine import *
#  Create your models here.
class menublog(Document):
      des = StringField()
      title = StringField()
      score = StringField()
      tags = ListField(StringField())
      author = StringField()
      # targettable 指定数据库website中的一张数据表的名字
      meta = {
        'collection': 'targettable'
    }
  1. in views.py, import your model
    render() combines a given template with a given context dictionary and returns an HttpResponse object with that rendered text.
# 导入models.py中定义的class menublog
from myapp.models import menublog
def myview(request):
      data = menublog.objects
      # mydata将作为key在templates中被引用
      context = {    
         'mydata': data}
      return render(request, 'index.html', context)
  1. Django template language
    引用views.py中myview返回的HttpResponse
......
           {% for item in mydata %}
                <li>
                    ![]({% static 'images/0001.jpg' %})
                    <div class="article-info">
                        <h3><a href="#">{{ item.title }}</a></h3>
                        <p class="meta-info">
                            {% for tag in item.tags %}
                                <span class="meta-cate">{{ tag }}</span>
                            {% endfor %}
                        </p>
                        <p class="description">{{ item.des }}</p>
                    </div>
                    <div class="rate">
                        <span class="rate-score">{{ item.score }}</span>
                    </div>
                </li>
           {% endfor %}
......

就像直接使用python一样,for循环也可以嵌套。

至此,对Django的整个框架结构有了初步的印象。
Keep going...

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容