フォームを保存している非常に基本的なビューがあります。何らかの理由で、「ビューは HttpResponse オブジェクトを返しませんでした」というエラーが表示され続けます。ここでこの一般的な問題を見ましたが、私に当てはまる解決策が見つかりませんでした。誰か考えがありますか?以下のコードを含めました。この簡単な質問を手伝っていただければ幸いです。
def EarlyAdopterSignup(request):
f = LandingPageForm(request.POST)
if f.is_valid():
email = f.cleaned_data['email']
zip = f.cleaned_data['zip']
adopter = EarlyAdopter(email = email, zip = zip)
try:
adopter.save()
return render_to_response('EarlyAdopterSignup.html')
except:
return HttpResponse("There was an error with your submission. Please try again.")