博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【2.5】实现博客数据返回页面
阅读量:5086 次
发布时间:2019-06-13

本文共 1055 字,大约阅读时间需要 3 分钟。

1.应用views.py,完成视图的定义

1 def article_content(request): 2     article = Article.objects.all()[0] 3     title = article.title 4     brief_content = article.brief_content 5     content = article.content 6     article_id = article.article_id 7     publish_date = article.publish_date 8     return_str = 'title: %s, brief_content: %s, content: %s, article_id: %s, publish_date: %s'.format(title, 9                                                                                                       brief_content,10                                                                                                       content,11                                                                                                       article_id,12                                                                                                       publish_date)13     return HttpResponse(return_str)

 

2.配置应用级别的路由

1 path('content', blog.views.article_content),

 

3.配置项目级别的路由

1 path('blog/', include('blog.urls')),

 

转载于:https://www.cnblogs.com/zydeboke/p/11446349.html

你可能感兴趣的文章
Screening technology proved cost effective deal
查看>>
MAC 上升级python为最新版本
查看>>
创业老板不能犯的十种错误
查看>>
Animations介绍及实例
查看>>
判断请求是否为ajax请求
查看>>
【POJ2699】The Maximum Number of Strong Kings(网络流)
查看>>
spring boot配置跨域
查看>>
BZOJ 1996 合唱队(DP)
查看>>
进击吧!阶乘——大数乘法
查看>>
安卓学习资料推荐-25
查看>>
Mysql数据库备份和还原常用的命令
查看>>
关于退出当前页面在火狐的一些问题
查看>>
【项目实施】项目考核标准
查看>>
spring-aop AnnotationAwareAspectJAutoProxyCreator类
查看>>
经典入门_排序
查看>>
Redis Cluster高可用集群在线迁移操作记录【转】
查看>>
二、spring中装配bean
查看>>
VIM工具
查看>>
javascript闭包
查看>>
@Column标记持久化详细说明
查看>>