Django says “didn't return an HttpResponse object. It returned None instead.”

后端 未结 2 1850
渐次进展
渐次进展 2021-01-20 05:39

I was looking for solutions on stack, but none did helped me. The most solutions were indent-related, but I think mine is not. I\'ll appreciate it when someone can help me o

2条回答
  •  不思量自难忘°
    2021-01-20 06:17

    You have not contemplated the case where the request's verb isn't POST, in that case the function get_question will return the default value for functions without an explicit return: None. This is why is some important to always use if in conjunction with else, in functional languages such as ML and Haskell that's required and in my experience it helps you understand better the data flow of your program.

提交回复
热议问题