use jsonify instead of json.dumps for JSON output このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
このルールを試す ID: python-flask/use-jsonify
Language: Python
Severity: Notice
Category: Best Practices
Description With the flask framework, jsonify
helps you write API endpoints that return JSON data.
Learn More Non-Compliant Code Examples @app.route ( "/article" )
def get_article ():
article = get_article_by_id ( request . args . get ( "id" ))
return json . dumps ( article ) # use flask.jsonify instead of json.dumps
Compliant Code Examples from flask import jsonify
@app.route ( "/article" )
def get_article ():
article = get_article_by_id ( request . args . get ( "id" ))
return jsonify ( article )
Seamless integrations. Try Datadog Code Analysis