matching query does not exist Error in Django

后端 未结 6 583
情歌与酒
情歌与酒 2020-11-29 20:35

I have implemented a password recovery functionality in django. With my method, the new password will be sent to the email id entered. It works fine when given the correct e

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 20:46

    In case anybody is here and the other two solutions do not make the trick, check that what you are using to filter is what you expect:

    user = UniversityDetails.objects.get(email=email)
    

    is email a str, or a None? or an int?

提交回复
热议问题