第十四章调试时出现错误
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'])
第十四章调试时出现错误
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'])
本文标题:Flask web 14章测试出现错误提示LookupError
本文链接:https://www.haomeiwen.com/subject/wwncoftx.html
网友评论