1.由於不支持博客首頁到文章詳情頁的跳轉,只能打開第一篇文章的詳情頁
2.所以需要做以下工作:
設計文章詳情頁的url,完善視圖函數邏輯,實現首頁跳轉
/blog/detail =>不能指定某一篇文章
/blog/detail/1 => 博客唯一id唯1的文章
/blog/detail/2 => 博客唯一id唯2的文章
/blog/detail/3 => 博客唯一id唯3的文章
/blog/detail/......
獲取URL路徑參數:<>
頁面跳轉:href指定html
3.

4.view.py

5.路由

以上。
