Python学习笔记:6.1.2 路由与视图函数

前言:本文是学习网易微专业的《python全栈工程师 - Flask高级建站》课程的笔记,欢迎学习交流。同时感谢老师们的精彩传授!

一、课程目标
  • render_template函数
  • url_for函数
二、详情解读
2.1.输出模版
2.1.1.模版目录

使用模版输出之前,需要预先做以下工作:
1.创建templates目录
2.将html页面部分复制到该目录下
3.在视图函数中使用render_template函数渲染模版

from flask import render_template
def myViewFunc():
	return render_template(<

你可能感兴趣的:(Python全栈工程师学习笔记,url_for函数,flask路由,flask视图函数)