Backbone.js发布500错误

时间:2012-01-15 11:29:40

标签: django backbone.js tastypie

有谁知道如何指定发布到json /应用程序的ContentType?我以为我是,并且默认情况下骨干做了它,但从它说它得到纯文本的事实判断(看到评论),我想我需要找出另一种方法来指定它。

我正在使用Backbone.js,我正在尝试POST到不再只读的TastyPie API,当我尝试制作模型和.save()时,我收到500错误。这是我用于同步的代码片段,我在这里找到: http://documentcloud.github.com/backbone/docs/backbone.html#section-124

   Backbone.sync = function(method, model, options){
        var type = methodMap[method];
        var params = _.extend({
        type: type,
        dataType: 'json'
        }, options);

        if (!params.url){
        params.url = getUrl(model) || urlError();
        }

        if (Backbone.emulateJSON){
        params.contentType = 'application/json';
        params.data = params.data ? {model: params.data} : {};
        }

        if (Backbone.emulateHTTP){
        if(type === 'PUT' || type === 'DELETE'){
           if (Backbone.emulateJSON) params.data._method = type;
           params.type = 'POST';
           params.beforeSend = function (xhr){
               xhr.setRequestHeader('X-HTTP-Method-Override', type);
            };
         }
         }

        if (params.type !== 'GET' && ! Backbone.emulateJSON){
        params.prorcessData = false;
        }

        return $.ajax(params);
        };





    $.fn.serializeObject = function()
    {
        var o = {};
        var a = this.serializeArray();
        $.each(a, function() {
        if (o[this.name] !== undefined) {
            if (!o[this.name].push) {
            o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
        });
        return o;
    };

    $(function() {
        $('form').submit(function() {
        var dict = $('form').serializeObject();
        var new_task = new Backbone.Model({
        date: toString(dict.date),
        name: toString(dict.name),
        priority: toString(dict.priority)});
        console.log("new_task =" + new_task);
         new_task.save();
        console.log(dict);

        return false;
        });

    });


    });

1 个答案:

答案 0 :(得分:3)

尝试在代码中设置Backbone.emulateJSON = true;

如果设置为true,则将contentType设置为'application / json',这就是您要查找的内容。

你只需要设置一次这个变量,所以一个好的地方就在你的表单提交代码

之上
$(function() {
    Backbone.emulateJSON = true;
    $('form').submit(function() {
        ...