the converter 'init' does not exist

raise LookupError(‘the converter %r does not exist’ % converter_name)
LookupError: the converter ‘init’ does not exist

找了半天错误,
最后发现事
@home.route(‘/like-post/<init:id>’)
把int写成了init
改成
@home.route(‘/like-post/<int:id>’)
就好了

    原文作者:coreki
    原文地址: https://www.jianshu.com/p/e578445492b4
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞