Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Ruby on Rails JSON は、次の形式で curl 呼び出しを解析できます。
name=test. これを と解釈し{"name": "test"}ます。
name=test
{"name": "test"}
PythonJSONはこれをJSONエラーと見なしているようです(明らかにそうです)。ただし、パースペイロードをの形式で取得する方法はありname=testますか? JSONここでは、Flask でPython を使用しています。
JSON
フラスコを使用している場合は、jsonify を使用しない理由
from flask import jsonify @app.route('/do') def do_whatever(): return jsonify(name=test)
これにより、次のような JSON 応答がブラウザーに送信されます。
{ "name": "test", }