240 发简信
IP属地:辽宁
  • 01 - 关于 MapReduce

    1. map 和 reduce MapReduce 任务过程分为两个处理阶段:map阶段和reduce阶段。每阶段都以键-值对座位输入和输出,其类型由程序员来选择。程序员还需...

  • 09 - Reusable apps

    Reusable apps First, create a parent directory for polls, outside of your Django projec...

  • 08 - Customing the admin site

    Customing the admin site Customize the admin form# polls/admin.pyfrom django.contrib im...

  • 07 - Static files

    Static files Customize your app’s look and feel/* polls/static/polls/style.css */li a {...

  • 06 - Testing

    Testing Create a test to expose the bug$ python manage.py shell# identify a bug>>> impo...

  • 05 - Forms and generic views

    Forms and generic views Write a simple form<!-- polls/templates/polls/detail.html --> {...

  • 04 - Views and templates

    Views and templates Writing more views# polls/views.py # views responsedef detail(reque...

  • 03 - Models and the admin site

    Models and the admin site Database setup$ pip install mysqlclient Creating modelsfrom d...

  • 02 - Requests and responses

    Requests and responses Create project and app# Creating a project$ django-admin startpr...