2016-01-12 98 views
0

我试图在Django中执行Ajax POST请求,但它给了我一个错误。我对Ajax GET请求也有类似的看法,并且效果很好。 这是我的看法:Django:object has no attribute'post'

class ChangeWordStatus(JSONResponseMixin, AjaxResponseMixin, View): 

def get_ajax(self, request, *args, **kwargs): 
    user_profile = get_object_or_404(UserProfile, user=request.user) 
    lemma = request.POST['lemma'] 
    new_status_code = int(request.POST['new_status_code']) 

    word = Word.objects.get(lemma=lemma) 
    old_status_code = user_profile.get_word_status_code(word) 

    json_dict = {} 
    json_dict["message"] = "Done" 

    return self.render_json_response(json_dict) 

我得到这个:

Traceback: 
File "C:\Python34\lib\site-packages\django\core\handlers\base.py" in get_response 
    132.      response = wrapped_callback(request, *callback_args, **callback_kwargs) 
File "C:\Python34\lib\site-packages\django\views\generic\base.py" in view 
    71.    return self.dispatch(request, *args, **kwargs) 
File "C:\Python34\lib\site-packages\braces\views\_ajax.py" in dispatch 
    78.    return handler(request, *args, **kwargs) 
File "C:\Python34\lib\site-packages\braces\views\_ajax.py" in post_ajax 
    87.   return self.post(request, *args, **kwargs) 

Exception Type: AttributeError at /slv/change_word_status/ 
Exception Value: 'ChangeWordStatus' object has no attribute 'post' 
Request information: 
GET: No GET data 

POST: 
csrfmiddlewaretoken = 'eapny7IKVzwWfXtZlmo4ah657y6MoBms' 
lemma = 'money' 
new_status_code = '1' 

这里有什么问题?

+0

你需要一个'。员额()'方法来捕捉'POST'请求​​。 – Gocht

回答

2

从你的堆栈跟踪中,我相信你正在使用django-braces

您发送POST请求,但您没有post_ajax方法。我假设你的get_ajax函数实际上应该是post_ajax

class ChangeWordStatus(JSONResponseMixin, AjaxResponseMixin, View): 

    def post_ajax(self, request, *args, **kwargs): 
     user_profile = get_object_or_404(UserProfile, user=request.user) 
     lemma = request.POST['lemma'] 
     new_status_code = int(request.POST['new_status_code']) 

     word = Word.objects.get(lemma=lemma) 
     old_status_code = user_profile.get_word_status_code(word) 

     json_dict = {} 
     json_dict["message"] = "Done" 

     return self.render_json_response(json_dict) 

参考:https://django-braces.readthedocs.org/en/latest/other.html#ajaxresponsemixin

+0

谢谢,它很明显,但我没有注意到很长一段时间。 – hopheylalaley

相关问题