• Index

jsonfiy-接口

Reads: 2107 Edit

from flask import jsonify

tasks = [
    {
        'id': 1,
        'title': u'订阅 python_mastery 专栏',
        'description': u'专栏Link: https://xiaozhuanlan.com/python_mastery'
    },
    {
        'id': 2,
        'title': u'订阅 pythonml 专栏',
        'description': u'专栏Link: https://xiaozhuanlan.com/pythonml'
    }
]

@users_bp.route('/test', methods=['GET'])
def test():
    return jsonify({'tasks': tasks})

Comments

Make a comment

www.ultrapower.com ,王硕的博客,专注于研究互联网产品和技术,提供中文精品教程。 本网站与其它任何公司及/或商标无任何形式关联或合作。
  • Index
aaaaa