圆月山庄资源网 Design By www.vgjia.com
一、页面实现
index.html
base.html
post.html
header.html
footer.html
<!-- index.html--> {% extends 'base.html' %} <html lang="en"> <head> <meta charset="UTF-8"> <title>个人博客</title> </head> <body> <h1>欢迎来到我的博客</h1> {% for post in posts %} <hr> <p style="font-family: 微软雅黑 "> <a href="/post/{{ post.slug }}" rel="external nofollow" rel="external nofollow" >{{ post.title }}</a> </p> {% endfor %} <br> {{ now }} </body> </html> <div class="mainContext"> <div class="rightContext"> {% block title %}欢迎来到我的博客{% endblock %} {% block headmessage %}<h3 style="font: 微软雅黑;">文章列表</h3>{% endblock %} {% block content %} <ul> {% for post in posts %} <p> <li><a href="/post/{{ post.slug }}" rel="external nofollow" rel="external nofollow" >{{ post.title }}</a></li> </p> {% endfor %} </ul> {% endblock %} </div> </div>
<!-- base.html--> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{% block title %} {% endblock %}</title> </head> <body> <div class="mainContext"> <div class="leftContext"> <h3 style="font: 微软雅黑;">文章分类</h3> <ul> <li><a href="/tag/" rel="external nofollow" >唐诗</a></li> <li><a href="/tag/" rel="external nofollow" >宋词</a></li> <li><a href="/tag/" rel="external nofollow" >五言古诗</a></li> </ul> </div> <div class="rightContext"> <div class="top1"> {% include 'header.html' %} </div> <div class="mid2"> {% block headmessage %} {% endblock %} {% block content %} {% endblock %} </div> <div class="bot3"> <br/> {% include 'footer.html' %} </div> </div> </div> </body> </html>
<!-- post.html--> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>post</title> </head> <body> <a href="http://localhost:8000/" rel="external nofollow" >返回上一页</a><br/> {{ post.body }} </body> </html>
<!-- footer.html--> {% block footer %} {% if now %} <p style="font-family: 微软雅黑">时间:{{ now }}</p> {% else %} <p style="font-family: 微软雅黑">如需转载请注明来源</p> {% endif %} {% endblock %}
models.py 数据表的设计
from django.db import models from django.utils import timezone from tinymce.models import HTMLField # Create your models here. class Post(models.Model): title = models.CharField(max_length = 200,verbose_name=u'标题')#标题 slug = models.CharField(max_length=200,verbose_name=u'文章网址')#文章网址 body = models.TextField()#文章内容 tags = models.CharField(max_length=100, verbose_name=u'标签') pub_date = models.DateTimeField(default = timezone.now)#发表时间 #pub_date 以timezone.now的方式让其自动产生时间 在执行需要pytz模块支撑 class Meta: db_table = '博客' ordering = ['pub_date']#按照发表时间排序显示顺序依据 def __str__(self):#设置此类所提供的数据项,显示文章标题 return self.title
数据表的迁移 在cmd中执行
python manage.py makemigrations python manage.py migrate
views.py 方法的实现
#初始页面 显示所有文章列表 def homepage(request): posts = Post.objects.all().order_by('-pub_date') return render(request, 'index.html', locals()) now = datetime.now() #显示文章内容 def show_detail(request,slug): try: post = Post.objects.get(slug = slug) if post != None: return render(request,'post.html',locals()) except: return redirect('/')#返回首页 #在views中调用属于同一个标签文章 def search_tag(request): #tag在URL中获取 tag = request.GET.get('p') print(tag) try: posts = Post.objects.filter(tags=tag)#注意这里写的是filter if posts != None:#这里使用的是posts,和index.html中对应 return render(request,'index.html',locals()) except: print('没找到')
url.py在url中注册路径
from django.conf.urls import url, include from django.contrib import admin from django.urls import path from myblogs import views #import tinymce urlpatterns = [ path('', views.homepage),#进入系统主页 path('admin/', admin.site.urls),#进入管理员页面 path('post/<slug:slug>/',views.show_detail),#显示详细信息# 定义拼接地址,获取标签信息 url(r'^tag/$', views.search_tag)#注意这里使用的是url 和正则表达式 需要前文中引入 #url(r'^tinymce/', include('tinymce.urls')), # 这是富文本编辑器 ]
在界面中添加css或者是图片
配置setting
STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), ]
在界面中引入
1.方法一 {% load staticfiles %} <title>{% block title %} {% endblock %}</title> 2.方法二 {% load staticfiles %} <link rel="stylesheet" href="{% static 'index.css' %}" rel="external nofollow" >
以上就是利用django创建一个简易的博客网站的示例的详细内容,更多关于django创建网站的资料请关注其它相关文章!
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月02日
2024年11月02日
- 《暗喻幻想》顺风耳作用介绍
- 崔健1985-梦中的倾诉[再版][WAV+CUE]
- 黄子馨《追星Xin的恋人们2》HQ头版限量编号[WAV+CUE]
- 孟庭苇《情人的眼泪》开盘母带[低速原抓WAV+CUE]
- 孙露《谁为我停留HQCD》[低速原抓WAV+CUE][1.1G]
- 孙悦《时光音乐会》纯银CD[低速原抓WAV+CUE][1.1G]
- 任然《渐晚》[FLAC/分轨][72.32MB]
- 英雄联盟新英雄安蓓萨上线了吗 新英雄安蓓萨技能介绍
- 魔兽世界奥杜尔竞速赛什么时候开启 奥杜尔竞速赛开启时间介绍
- 无畏契约CGRS准星代码多少 CGRS准星代码分享一览
- 张靓颖.2012-倾听【少城时代】【WAV+CUE】
- 游鸿明.1999-五月的雪【大宇国际】【WAV+CUE】
- 曹方.2005-遇见我【钛友文化】【WAV+CUE】
- Unity6引擎上线:稳定性提升、CPU性能最高提升4倍
- 人皇Sky今日举行婚礼!电竞传奇步入新篇章