我正在关注此处提供的有关Hyperlink的文档: https://flask-marshmallow.readthedocs.io/en/latest/
当我运行示例代码时,我应该(根据文档和我的期望)获得以下信息:
# {'id': 1, 'title': 'Fight Club', 'author': '/authors/1'}
我实际上得到的是:
# {'id': 1, 'title': 'Fight Club', 'author': '/authors/?id=1'}
请注意,ma已将查询字符串参数id
添加到url。我不想要它,但是我不清楚为什么要添加它或如何删除它。