摘要: 前言 Flask-RESTX 框架默认返回的是application/json格式,使用render_template()返回html内容遇到了一些问题 遇到的问题 需要使用render_template() 返回HTML内容 from flask_restx import Resource, Na 阅读全文
posted @ 2022-10-14 15:49 上海-悠悠 阅读(330) 评论(0) 推荐(1)
摘要: 前言 django 中迭代字典,可以直接Dict.items,在flask 中迭代字典遇到了一些坑 迭代字典 视图部分 data = { "name": "yoyo", "email": "123@qq.com" } @app.route('/hello') def hello(): return 阅读全文
posted @ 2022-10-14 15:35 上海-悠悠 阅读(198) 评论(0) 推荐(0)