[python]1(2)

简介: [python]1(2)

cd mysite

python3 manage.py runserver 8080

在浏览器中打开`http://127.0.0.1:8080`可以看到欢迎信息。
### 自定义项目
在mysite目录下:

python manage.py startapp polls

ls

db.sqlite3 manage.py mysite polls

上述命令类似于在项目下新建一个子module,以便完成不同的任务。
下面开始新建自己页面以及页面逻辑。
编写的顺序为
*   新建页面
*   新建url路由
*   在根url路由中注册
#### 新建页面

gedit polls/views.py

views.py中添加如下代码:

from django.shortcuts import render

Create your views here.

from django.http import HttpResponse

def index(request):

return HttpResponse('hello world from pools')
#### 添加url路由

gedit polls/urls.py

添加如下代码:
from django.conf.urls import url
from polls import views
urlpatterns=[url(r’^$',views.index,name=‘index’)]
#### 注册路由

gedit mysite/urls.py

urls.py中添加如下代码:
from django.conf.urls import include,url
from django.contrib import admin
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^polls/',include('polls.urls')),#add

]

好了,以上就完成了自定义的界面和url。  
mysite目录下终端执行:

python3 manage.py runserver

打开`http://127.0.0.1:8080/polls`可以看到`hello world from pools`字样
### 添加数据库支持
打开polls/models.py

model定义了项目的数据结构

from django.db import models
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')

class Choice(models.Model):

question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
打开mysite/settings.py修改:

Application definition

INSTALLED_APPS = [

'polls.apps.PollsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',

]

终端执行:

python3 manage.py makemigrations

python3 manage.py migrate

#### 准备数据
python3 manage.py shell
In [1]: from polls.models import Question, Choice
In [2]: Question.objects.all()
Out[2]: 
In [3]: from django.utils import timezone
In [4]: q=Question(question_text=‘what’s new?’,pub_data=timezone.now())
In [5]: q.save()

一、Python所有方向的学习路线

Python所有方向路线就是把Python常用的技术点做整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。

二、学习软件

工欲善其事必先利其器。学习Python常用的开发软件都在这里了,给大家节省了很多时间。

三、入门学习视频

我们在看视频学习的时候,不能光动眼动脑不动手,比较科学的学习方法是在理解之后运用它们,这时候练手项目就很适合了。


相关文章
|
6月前
|
存储 数据处理 Python
Python比大小
Python比大小
72 0
|
6月前
|
前端开发 数据库 开发者
Python的TurboGears
Python的TurboGears
63 1
|
6月前
|
Python
Python懒羊羊
Python懒羊羊
110 0
|
开发者 Python
教你用python画一个雪容融
教你用python画一个雪容融
366 0
|
1月前
|
Python
Python
【10月更文挑战第10天】
|
6月前
|
机器学习/深度学习 人工智能 算法框架/工具
python
python
48 0
|
6月前
|
前端开发 应用服务中间件 Apache
Python的CherryPy
Python的CherryPy
72 3
|
机器学习/深度学习 数据采集 存储
Python的简单介绍
Python的简单介绍
122 0
|
SQL Java 关系型数据库
数据持久化技术(Python)的使用
- 传统数据库连接方式:mysql(PyMySQL) - ORM 模型:SQLAlchemy MyBatis、 Hibernate ## PyMySQL 安装: ``` pip install pymysql ``` ## 简单使用 利用 pymysql.connect 建立数据库连接并执行 SQL 命令(需要提前搭建好数据库): ``` import pymysql db =