返回字典obj时Flask中的响应错误

2024-09-30 00:28:36 发布

您现在位置:Python中文网/ 问答频道 /正文

我试图从一个flask应用程序在HTML上打印一个字典,但它不允许我这样做,抛出下面的错误。我能够成功地返回字符串(https://github.com/upendrak/Disease_Predictor),但是当我更改代码以返回字典(下面的代码)时,它抛出了一个错误。我想这和我不太熟悉的js有关。在

这是我得到的错误

TypeError: 'list' object is not callable
The view function did not return a valid response. The return type must be a string, tuple, Response instance, or WSGI callable, but it was a list.

下面是我的app.py脚本中的两个相关函数

^{pr2}$

这是我的js文件-https://github.com/upendrak/Disease_Predictor/blob/master/static/js/main.js


Tags: the代码httpsgithubcomreturn字典错误
1条回答
网友
1楼 · 发布于 2024-09-30 00:28:36

使用[jsonify()][1]传递数据。它将数据序列化为JSON,因此返回JSON响应。不要只返回return result,而是执行return jsonify(result)。在

更新代码:

def model_predict(img_path, model):
    img = image.load_img(img_path, target_size=(224, 224))

    # Preprocessing the image
    x = image.img_to_array(img)
    x = np.expand_dims(x, axis=0)
    x = x/255

    predictions = model.predict(x)
    pred_5 = np.argsort(predictions)[0][-5:]
    top_5 = {}
    labels_dict = {'Apple Scab': 0, 'Apple Black rot': 1, 'Apple Cedar rust': 2, 'Apple healthy': 3}
    for i in pred_5:
        rank = predictions[0][i]
        for kee, val in labels_dict.items():
            if i == val:
                top_5[kee] = rank

    sorted_x2 = sorted(top_5.items(), key=operator.itemgetter(1), reverse=True)
    return sorted_x2

@app.route('/predict', methods=['GET', 'POST'])
def upload():
    if request.method == 'POST':
        f = request.files['file']

        # Save the file to ./uploads
        basepath = os.path.dirname(__file__)
        file_path = os.path.join(
            basepath, 'uploads', secure_filename(f.filename))
        f.save(file_path)

        result = model_predict(file_path, model)
        return jsonify(result)

    return None

相关问题 更多 >

    热门问题