-
Models | Django搭建简易博客教程
现在我们进入Django中的交互式shell来进行数据库的增删改查等操作
$ python manage.py shell
Python 3.4.2 (v3.4.2:ab2c023a9432, Oct 5 2014, 20:42:22)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", ...
-
Introduce | Django搭建简易博客教程
本书主要面向 Django学习者和博客开发者, 其中的代码可以在作者的github上获得, 主要是在Mac上进行开发, 并没有在其他运行环境下做测试
-
Template | Django搭建简易博客教程
在my_blog下添加文件名, 文件夹名为
templates
mkdir templates
#看到当前文件构成
my_blog
├── article
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-34.pyc
│ │ ├── admin.cpython-34.pyc
│ │ ├── m...
-
Views和URL | Django搭建简易博客教程
那么那么开始在my_blog/article/views.py中编写简单的逻辑
#现在你的views.py应该是这样
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home(request):
return HttpRespons...
-
搜索和ReadMore | Django搭建简易博客教程
首先在my_blog/templates下添加所有输入框
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<h1 class="brand-title"><a href="{% url "home" %}">Andrew Liu Blog</a></h1>
...
-
开发环境和Django安装 | Django搭建简易博客教程
下面仅仅是我的项目开发环境, 没有必要追求完全一致...
Mac OS X 10.10.1 #非必要
Python3.4.1
Django1.7.1
Bootstrap3.3.0 or Pure(临时决定使用的, @游逸 推荐) #非必要
Sublime Text 3 #非必要
virtualenv 1.11.6
虚拟环境配置
virtualenv创建虚拟环境, Ubuntun和Mac安...