当前位置: 首页 > news >正文

Flask 中结合 Jinja2 模板引擎返回渲染后的 HTML

在 Flask 中结合 Jinja2 模板引擎返回渲染后的 HTML 是核心功能之一。以下是详细实现方法和最佳实践:


一、基础模板渲染

1. 项目结构准备
myapp/
├── app.py          # Flask主程序
├── templates/      # 模板目录
│   └── index.html  # Jinja2模板
└── static/         # 静态资源(CSS/JS/图片)
2. 基本渲染示例
# app.py
from flask import Flask, render_templateapp = Flask(__name__)@app.route('/')
def home():return render_template('index.html', title='首页',user={'name': '张三', 'age': 25})
<!-- templates/index.html -->
<!DOCTYPE html>
<html>
<head><title>{{ title }}</title><link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
</head>
<body><h1>欢迎, {{ user.name }}!</h1>{% if user.age >= 18 %}<p>您是成年人</p>{% else %}<p>您是未成年人</p>{% endif %}
</body>
</html>

二、高级模板技巧

1. 模板继承(Layout系统)
<!-- templates/layout.html -->
<html>
<head>{% block head %}<title>{% block title %}{% endblock %}</title>{% endblock %}
</head>
<body>{% block content %}{% endblock %}
</body>
</html>
<!-- templates/page.html -->
{% extends "layout.html" %}{% block title %}子页面{% endblock %}{% block content %}
<h1>这是子页面内容</h1>
{% endblock %}
2. 宏(Macros)实现组件复用
<!-- templates/macros.html -->
{% macro render_user(user) %}
<div class="user-card"><h3>{{ user.name }}</h3><p>年龄: {{ user.age }}</p>
</div>
{% endmacro %}
<!-- 使用宏 -->
{% from "macros.html" import render_user %}{{ render_user({'name': '李四', 'age': 30}) }}

三、动态数据与JS交互

1. 直接传递JSON到JS
# Flask路由
@app.route('/data')
def get_data():return render_template('data.html', items=[1, 2, 3],config={'debug': True})
<script>
const APP_CONFIG = {{ config | tojson | safe }};
const ITEMS = {{ items | tojson | safe }};console.log(APP_CONFIG.debug); // true
ITEMS.forEach(item => console.log(item));
</script>
2. AJAX动态加载(推荐)
# 提供JSON API
@app.route('/api/data')
def api_data():return jsonify({'data': [4,5,6]})
// 前端通过fetch获取
fetch('/api/data').then(res => res.json()).then(data => {document.getElementById('output').innerHTML = `服务器数据: ${data.data.join(', ')}`;});

四、常见问题解决方案

1. 缓存问题

开发时禁用缓存:

@app.after_request
def add_header(response):if 'Cache-Control' not in response.headers:response.headers['Cache-Control'] = 'no-store'return response
2. 处理表单数据
@app.route('/submit', methods=['POST'])
def submit():username = request.form.get('username')return render_template('result.html', username=username)
<form method="POST" action="/submit"><input type="text" name="username"><button type="submit">提交</button>
</form>

五、性能优化建议

  1. 模板缓存(生产环境启用):

    app.config['TEMPLATES_AUTO_RELOAD'] = False  # 生产环境设为False
    
  2. 静态文件版本控制

    <link href="/static/css/style.css?v={{ config.VERSION }}" rel="stylesheet">
    
  3. 异步加载

    <script defer src="{{ url_for('static', filename='js/app.js') }}"></script>
    

六、安全注意事项

  1. 始终转义变量

    <!-- 安全 -->
    <p>{{ user_input | escape }}</p><!-- 危险!避免直接渲染HTML -->
    <p>{{ user_input | safe }}</p> 
    
  2. 内容安全策略(CSP)

    @app.after_request
    def add_csp(response):response.headers['Content-Security-Policy'] = "default-src 'self'"return response
    

七、完整工作流程示例

# app.py
from flask import Flask, render_template, requestapp = Flask(__name__)@app.route('/search')
def search():query = request.args.get('q', '')results = []  # 这里替换为实际搜索逻辑return render_template('search.html',query=query,results=results)if __name__ == '__main__':app.run(debug=True)
<!-- templates/search.html -->
{% extends "layout.html" %}{% block content %}
<form action="/search"><input type="text" name="q" value="{{ query }}"><button>搜索</button>
</form><ul>{% for item in results %}<li>{{ item }}</li>{% endfor %}
</ul>
{% endblock %}

通过以上方法,您可以高效地在Flask中实现:

  • 动态HTML渲染
  • 前后端数据交互
  • 组件化开发
  • 安全的内容输出

关键点是合理使用Jinja2的模板继承、控制结构和过滤器,同时注意安全性和性能优化。

http://www.xdnf.cn/news/996031.html

相关文章:

  • 关于 /proc/net/tcp 与 /proc/$pid/net/tcp 的关系分析
  • python中的循环结构
  • 多参表达式Hive UDF
  • 如何确定某个路由器的路由表?(计算机网络)
  • Flink读取Kafka写入Paimon
  • C++11中char16_t和char32_t的入门到精通
  • 黑马点评面试话术
  • uniapp 时钟
  • 电动汽车驱动模式扭矩控制设计方法
  • 三、DevEco Studio安装和HelloWorld应用
  • Kubernetes 集群安全(身份认证机制、SecurityContext、Network Policy网络策略、预防配置泄露、全面加固集群安全)
  • Springboot仿抖音app开发之消息业务模块后端复盘及相关业务知识总结
  • C++核心编程(动态类型转换,STL,Lanmda)
  • 【EdgeAI实战】(3)边缘AI开发套件 STM32N6570X0 用户手册
  • 【递归、搜索与回溯算法】概括
  • Vue + Vite 项目部署 Docker 全攻略:原理、路由机制、问题排查与开发代理解析
  • 使用 PyTorch 和 SwanLab 实时可视化模型训练
  • Python使用总结之Linux部署python3环境
  • 【测试开发】数据类型篇-列表推导式和字典推导式
  • Vue3+TypeScript实现责任链模式
  • XML 注入与修复
  • 接口测试不再难:智能体自动生成 Postman 集合
  • Apache 反向代理Unity服务器
  • Golang启用.exe文件无法正常运行
  • NGINX 四层 SSL/TLS 支持ngx_stream_ssl_module
  • vue3集成高德地图绘制轨迹地图
  • 鸿蒙 UI 开发基础语法与组件复用全解析:从装饰器到工程化实践指南
  • uni-app 小程序 Cannot read property ‘addEventListener‘ of undefined, mounted hook
  • 一.干货干货!!!SpringAI入门到实战-小试牛刀
  • 山东大学《Web数据管理》期末复习宝典【万字解析!】