python flask_restful “message“: “Failed to decode JSON object: None“

1、问题表现

"message": "Failed to decode JSON object: None"

2、出现的原因

Werkzeug 版本过高

3、解决方案

pip install Werkzeug==2.0

解决效果

可以正常显示json数据了

{
    "message": {
        "rate": "参数错误"
    }
}

你可能感兴趣的:(python,flask,restful)