2017-08-13 11 views
0

私はDjango 1.9プロジェクトでpinax referral appを実行しようとしていますが、このエラーが発生します。mimeType error Django 1.9 Pinax-Referral

私はviews.pyのmimeTypeをcontent_typeに変更しようとしましたが、エラーは何も変わりませんでした。

アイデア? .modelsから

UPDATEDエラーメッセージ

Django Version: 1.9 
Python Version: 2.7.10 


Traceback: 

File "/Library/Python/2.7/site-packages/django/core/handlers/base.py" in get_response 
    149.      response = self.process_exception_by_middleware(e, request) 

File "/Library/Python/2.7/site-packages/django/core/handlers/base.py" in get_response 
    147.      response = wrapped_callback(request, *callback_args, **callback_kwargs) 

File "/Library/Python/2.7/site-packages/django/contrib/auth/decorators.py" in _wrapped_view 
    23.     return view_func(request, *args, **kwargs) 

File "/Library/Python/2.7/site-packages/django/views/decorators/http.py" in inner 
    42.    return func(request, *args, **kwargs) 

File "/Library/Python/2.7/site-packages/pinax/referrals/views.py" in create_referral 
    50.   mimetype="application/json" 

File "/Library/Python/2.7/site-packages/django/http/response.py" in __init__ 
    283.   super(HttpResponse, self).__init__(*args, **kwargs) 

Exception Type: TypeError at /referrals/ 
Exception Value: __init__() got an unexpected keyword argument 'mimetype' 

.utilsから紹介 をインポートこれcontent_type="application/json"

結果により、このラインmimeType="application/json"を変更してみてくださいensure_session_key

@login_required 
@require_POST 
def create_referral(request): 
    target = None 
    ctx = {"url": request.POST.get("redirect_to")} 

    if request.POST.get("obj_ct_pk") and request.POST.get("obj_pk"): 
     ct = ContentType.objects.get(pk=request.POST.get("obj_ct_pk")) 
     target = ct.get_object_for_this_type(pk=request.POST.get("obj_pk")) 
     ctx["obj"] = target 
     ctx["obj_ct"] = ct 

    referral = Referral.create(
     user=request.user, 
     redirect_to=request.POST.get("redirect_to"), 
     label=request.POST.get("label", ""), 
     target=target 
    ) 

    return HttpResponse(
     json.dumps({ 
      "url": referral.url, 
      "code": referral.code, 
      "html": render_to_string(
       "pinax/referrals/_create_referral_form.html", 
       ctx, 
       context_instance=RequestContext(request) 
      ) 
     }), 
     content_type="application/json" 
    ) 
+0

レスポンスを送信するコードを追加できますか?ありがとうございました! –

+0

@MartinAlonso更新済み!ありがとう – 9minday

+0

@ 9mindayなぜあなたはhttpresponseの代わりにjsonresponseを使用していませんか?それはあなたにいくつかのコードを保存します –

答えて

0

をインポート:

return HttpResponse(
    json.dumps({ 
     "url": referral.url, 
     "code": referral.code, 
     "html": render_to_string(
      "pinax/referrals/_create_referral_form.html", 
      ctx, 
      context_instance=RequestContext(request) 
     ) 
    }), 
    content_type="application/json" 
) 
+0

私はそれを変更し、エラーメッセージを更新しました。それでもmimeTypeエラーが発生します。ご回答有難うございます。一歩近づく! :D – 9minday

+0

@ 9minday今何を言っているのですか? –

+0

編集中のエラーメッセージを更新しました:) – 9minday

関連する問題