TypeError: The view function did not return a valid response.
在使用Flask写接口的过程中,报错TypeError: The view function did not return a valid response. The return type must be a string, dict, tuple, Response instance, or WSGI callable, but it was a list.
现象(描述)
现象:TypeError: The view function did not return a valid response. The return type must be a string, dict, tuple, Response instance, or WSGI callable, but it was a list.
描述:在使用Flask写接口的过程中,请求URLhttp://192.168.5.20:5000/diagnosis?symptom_word=%E5%91%BC%E5%90%B8%E8%A1%B0%E7%AB%AD%20%E5%91%BC%E5%90%B8%E5%9B%B0%E9%9A%BE%20%E8%85%B9%E5%BC%8F%E5%8F%8D%E5%B8%B8%E5%91%BC%E5%90%B8
,返回值报如上的错。
原因
flask下面的jsonify函数作用是,返回一个JSON类型的Response(一般用于把数据返回给前端,否则前端不能获取有效的数据,没有使用Python自带的json模块返回JSON数据,jsonify具有诸多自带JSON模块没有的特性,以更加适应前端,符合前端协议要求格式)
解决办法
将需要返回的数据,使用jsonify返回。即将
return disease_list
修改为
from flask import jsonify
return jsonify(disease_list)
更多推荐
所有评论(0)