Flask web 14章测试出现错误提示LookupError
2019-03-16 本文已影响0人
霍格
第十四章调试时出现错误
raise LookupError('the converter %r does not exist' % converter_name)
LookupError: the converter 'init' does not exist
检查发现是
@api.route('/posts/<int:id>', methods=['PUT'])
写成了
@api.route('/posts/<init:id>', methods=['PUT'])