よくあるように思える問題を抱えているが、私は研究を行ったが、どこでも正確に再現されているとは思わない。 json.loads(rety.text)
を印刷すると、必要な出力が表示されています。それでも、returnを呼び出すと、このエラーが表示されます。何か案は?ヘルプは大歓迎であり、ありがとうございます。 Flask MethodHandler
。を使用しています。
class MHandler(MethodView):
def get(self):
handle = ''
tweetnum = 100
consumer_token = ''
consumer_secret = ''
access_token = '-'
access_secret = ''
auth = tweepy.OAuthHandler(consumer_token,consumer_secret)
auth.set_access_token(access_token,access_secret)
api = tweepy.API(auth)
statuses = api.user_timeline(screen_name=handle,
count= tweetnum,
include_rts=False)
pi_content_items_array = map(convert_status_to_pi_content_item, statuses)
pi_content_items = { 'contentItems' : pi_content_items_array }
saveFile = open("static/public/text/en.txt",'a')
for s in pi_content_items_array:
stat = s['content'].encode('utf-8')
print stat
trat = ''.join(i for i in stat if ord(i)<128)
print trat
saveFile.write(trat.encode('utf-8')+'\n'+'\n')
try:
contentFile = open("static/public/text/en.txt", "r")
fr = contentFile.read()
except Exception as e:
print "ERROR: couldn't read text file: %s" % e
finally:
contentFile.close()
return lookup.get_template("newin.html").render(content=fr)
def post(self):
try:
contentFile = open("static/public/text/en.txt", "r")
fd = contentFile.read()
except Exception as e:
print "ERROR: couldn't read text file: %s" % e
finally:
contentFile.close()
rety = requests.post('https://gateway.watsonplatform.net/personality-insights/api/v2/profile',
auth=('---', ''),
headers = {"content-type": "text/plain"},
data=fd
)
print json.loads(rety.text)
return json.loads(rety.text)
user_view = MHandler.as_view('user_api')
app.add_url_rule('/results2', view_func=user_view, methods=['GET',])
app.add_url_rule('/results2', view_func=user_view, methods=['POST',])
トレースバックは次のとおりです(結果は上記のとおりです)。
Traceback (most recent call last):
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1836, in __call__
return self.wsgi_app(environ, start_response)
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1820, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1403, in handle_exception
reraise(exc_type, exc_value, tb)
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1478, in full_dispatch_request
response = self.make_response(rv)
File "/Users/RZB/anaconda/lib/python2.7/site-packages/flask/app.py", line 1577, in make_response
rv = self.response_class.force_type(rv, request.environ)
File "/Users/RZB/anaconda/lib/python2.7/site-packages/werkzeug/wrappers.py", line 841, in force_type
response = BaseResponse(*_run_wsgi_app(response, environ))
File "/Users/RZB/anaconda/lib/python2.7/site-packages/werkzeug/test.py", line 867, in run_wsgi_app
app_rv = app(environ, start_response)
Flaskは、ビューが応答のようなオブジェクトを返すことのみを想定しています。 これは、Response
、文字列、または本文、コード、ヘッダーを記述するタプルを意味します。あなたはそれらのことの一つではない辞書を返しています。 JSONを返すので、本文にJSON文字列を含む応答と、application/json
のコンテンツタイプを返します。
return app.response_class(rety.content, content_type='application/json')
この例では、作成したリクエストによって返されるコンテンツであるJSON文字列が既にあります。ただし、Python構造体をJSON応答に変換する場合は、jsonify
を使用します。
data = {'name': 'davidism'}
return jsonify(data)
背後では、FlaskはWSGIアプリケーションであり、呼び出し可能なオブジェクトを渡すことを想定しているため、特定のエラーが発生します。dictは呼び出し可能ではなく、Flaskは呼び出しませんそれを何かに変える方法を知ってください。
Flask.jsonify関数を使用してデータを返します。
from flask import jsonify
# ...
return jsonify(data)
Flaskビューからdata, status, headers
タプルを返す場合、データが既に応答オブジェクトである場合、Flaskは現在ステータスコードとcontent_type
ヘッダーを無視します。 jsonify
が返すものとして。
これはcontent-typeヘッダーを設定しません:
headers = {
"Content-Type": "application/octet-stream",
"Content-Disposition": "attachment; filename=foobar.json"
}
return jsonify({"foo": "bar"}), 200, headers
代わりに、flask.json.dumps
を使用してデータを生成します(これはjsonfiy
が内部的に使用するものです)。
from flask import json
headers = {
"Content-Type": "application/octet-stream",
"Content-Disposition": "attachment; filename=foobar.json"
}
return json.dumps({"foo": "bar"}), 200, headers
または、応答オブジェクトを操作します。
response = jsonify({"foo": "bar"})
response.headers.set("Content-Type", "application/octet-stream")
return response
ただし、これらの例に示されていることを文字通り実行し、ダウンロードとしてJSONデータを提供する場合は、代わりにsend_file
を使用します。
from io import BytesIO
from flask import json
data = BytesIO(json.dumps(data))
return send_file(data, mimetype="application/json", as_attachment=True, attachment_filename="data.json")
応答をjsonifyする代わりに、これは機能しました。
return response.content