程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Python >> web.py模板如何使用目錄層級

web.py模板如何使用目錄層級

編輯:Python

web.py的模板使用非常容易,但有時候我們需要做目錄層級以便管理。那麼如何使用目錄層級的模板呢?

通常我們使用模板的時候先聲明模板文件夾

render=web.template.render('templates')

使用templates文件夾下index.html模板

return render.index()

使用templates文件夾下list.html模板

return render.list()

以上所有的html模板文件只放在tempates目錄下,如果要在templates下建目錄並使用目錄下的模板文件只需加目錄名稱即可。

使用templates下的admin目錄裡的index.html模板

return render.admin.index()

使用templates下的admin目錄裡的login.html模板

return render.admin.login()

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved