您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“django3.02模板中超鏈接配置的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“django3.02模板中超鏈接配置的示例分析”這篇文章吧。
1.在myblog中的urls.py中
from django.urls import include from django.conf.urls import url urlpatterns = [ path('blog/',include('blog.urls')), ]
2.在blog的urls.py中
from django.urls import path from django.conf.urls import url from . import views urlpatterns = [ path('index',views.index), path('article/<int:article_id>',views.article_page,name='article_page') ]
3.在blog的view.py中
from django.shortcuts import render from django.http import HttpResponse from . import models # Create your views here. def index(request): articles = models.Article.objects.all() return render(request, 'blog/index.html', {'articles': articles}) def article_page(request,article_id): article = models.Article.objects.get(pk=article_id) return render(request,'blog/article_page.html',{'article':article}) #redner的第三個參數是用來傳遞數據到前端的,函數中支持一個disc參數(字典類型的數據)
4.在blog/templates/blog/index中
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>title</title> </head> <body> <h2><a href="">新文章</a></h2> {% for article in articles %} <a href="/blog/article/{{article.id}}" rel="external nofollow" >{{article.title}}</a> <br/> {% endfor %} </body> </html>
5.在blog/templates/blog/article_page.html中
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>article page</title> </head> <body> <h2>{{article.title}}</h2> <br/> <h4>{{article.content}}</h4> <br/><br/> <a href="">修改文章</a> </body> </html>
以上是“django3.02模板中超鏈接配置的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。