Python學習筆記——pycharm web服務器搭建(4):使用模板與數據展現

一、模板 在項目的templates文件中添加以應用爲名稱的文件夾,文件夾下添加H5文件,做爲模板html 在應用的views.py寫下以下代碼: def index(request): temp = loader.get_template('booktest/index.html') return HttpResponse(temp.render()) 或者python def
相關文章
相關標籤/搜索