基于Django和Ajax的模型保存

时间:2010-12-16 09:41:41

标签: javascript jquery ajax django

通过ajax,我想发布一些数据,如果模型成功保存,则将answer作为JSON对象返回。

这是我基于jquery的ajax帖子:

var requestData = { 'ievent_id': type , 'channel_id': CHANNEL_ID , 'start_date': dateToStrConverter(start_date) , 'end_date': dateToStrConverter(end_date) };
$.ajax({
    type: "POST",
    url: "my-ajax-url/",
    data: requestData,
    dataType: "json",
    success: function(data){
        console.log( "ID:" + data.plan_id + " Error:" + data.error);
    },
    error: function(msg){
        alert( "Theres an error with the server." );
    }              
});

我的Django视图处理这个ajax调用以保存iEventPlan对象并返回响应:

from django.utils import simplejson as json

def planner_save_view(request):
    if request.method == "POST" and request.is_ajax():
        root = json.loads(request.raw_post_data[0])

        ##data
        ievent = iEvent.objects.get(pk = root['ievent_id'])
        channel = Channel.objects.get(siservice = root['channel_id'])
        start_date = datetime.strptime(root['start_date'],'%d-%m-%Y %H:%M')
        end_date = datetime.strptime(root['end_date'],'%d-%m-%Y %H:%M')
        response_dict = {}
        try:
            plan = iEventPlan(red_button=ievent,channel=channel,start_date=start_date,end_date=end_date)
            plan.save()
            response_dict.update({'plan_id': plan.id})
        except:
            response_dict.update({'error': "theres a problem."})
        return HttpResponse(json.dumps(response_dict), mimetype="application/json")
    else:
        HttpResponse("Not authorized.")

这是我得到的错误:

JSONDecodeError at /my-ajax-url/

No JSON object could be decoded: line 1 column 0 (char 0)

我做错了什么?如果您向我展示处理基于Ajax的django模型节省和响应的正确方法,我将不胜感激。

2 个答案:

答案 0 :(得分:2)

您正在以标准格式编码发送POST数据。 dataType属性不指定要发送的数据类型,而是指定接收的数据类型。如果你真的想从你的浏览器发送JSON,你应该这样做:

  $.ajax({
    data: JSON.stringify(data),
    processData: false,
    contentType: 'application/json',
    // other options
  }

答案 1 :(得分:1)

jQuery的.ajax()函数不会将数据发布为原始JSON。它使用标准的表单编码格式(dataType参数用于确定服务器期望响应的格式。)

因此,您应该执行此操作,而不是json.loads()调用:

root = request.POST