美文网首页
学习django过程中遇到的issue: Exception T

学习django过程中遇到的issue: Exception T

作者: 钓小鱼的猫 | 来源:发表于2018-02-12 12:02 被阅读0次

    1.使用教程学习的时候,会遇到修改链接的硬编码的问题

    2.修改后发先一直会提示错误

    Exception Type: NoReverseMatchException Value: Reverse for 'detail' with arguments '('',)' and keyword arguments '{}' not found.

    3.一直怀疑是urls的正则表达式错误,或者域名空间的问题

    4.经过查询发现是 使用question_id代替了question.id

    In your index.html you gave poll_id as an argument, but that's just the name the argument will have within the detail function; it is not defined in your template. The actual value you want to call the function with is probably poll.id.

    至此这个问题得以解决

    相关文章

      网友评论

          本文标题:学习django过程中遇到的issue: Exception T

          本文链接:https://www.haomeiwen.com/subject/llprtftx.html