0

我有一个模范约会,它有很多任务。

创建一个具有任务的新约会模型可以很好地与骨干网一起使用。但是,当我尝试使用不同任务的 id 更新模型时,它不起作用。

我收到以下错误:

ActiveRecord::AssociationTypeMismatch: Task(#1192000) expected, 
got ActiveSupport::HashWithIndifferentAccess(#2458300)

参数:

{"appointment"=>
   {"id"=>"36",
    "customer_id"=>"19",
     "employee_id"=>"10",
     "done"=>"",
     "notes"=>"",
     "starts_at"=>"2012-09-05 13:00:00 +0200",
     "ends_at"=>"2012-09-05 14:30:00 +0200",
     "bookingtype"=>"",
     "tasks"=>
         "[{\"created_at\"=>\"2012-09-04T13:37:17+02:00\",
           \"duration\"=>\"60\", \"id\"=>\"12\",
           \"task_category_id\"=>\"5\", \"updated_at\"=>\"2012-09-04T13:46:13+02:00\"}]",
     "appointment"=>"",
     "task_ids"=>"[\"12\"]"},
     "action"=>"update",
     "controller"=>"appointments",
      "id"=>"36"}

我有一些想法,问题是请求中有任务和 task_ids,但我不知道如何在骨干网中解决这个问题。

我的更新方法如下所示:

    save: function() {
            var self = this;        

            var tasks = [];

            $("input:checked").each(function() {                   
               tasks.push($(this).val());
            });

            this.model.save({starts_at: this.$('#appointment_starts_at_modal').val(), employee_id: this.$('#employeeSelect').val(), customer_id: this.$('#customerSelect').val(),
                        "starts_at(5i)": this.$('#appointment_starts_at_5i_modal').val() , 
                        "ends_at(5i)":  this.$('#appointment_ends_at_5i_modal').val(), task_ids: tasks}, {
            success: function(model, resp) {
                self.model = model;   

                self.close();
            },
            error: function() {
                //new App.Views.Error();
            }
        });
        return false;
    },
4

1 回答 1

1

从错误来看,这听起来像是一个红宝石问题,我对红宝石一点也不熟悉。但是,对于 Backbone,您的约会模型中有“tasks”和“task_ids”属性应该不是问题。Backbone 很乐意将这些作为 JSON 数据发送到您的服务器。但是请注意,在 Backbone 中使用嵌套集合时,将 id 作为任务模型之外的属性传递的方式有点奇怪。:-)

不过,我可以谈谈我从 Backbone 的角度看到的内容。

我假设您的tasks_ids属性代表您拥有的所有任务的 id 数组。tasks是任务 JSON 对象的 array()。在 Backbone 中,当使用嵌套集合等时,通常id每个任务的属性都是任务对象的一部分。因此,如果我制作了一个将一堆任务数据作为数组发送的应用程序,它会发送如下所示:

"tasks"=>
     "[{\"id"=>\"12\", \"created_at\"=>\"2012-09-04T13:37:17+02:00\",
       \"duration\"=>\"60\", \"id\"=>\"12\",
       \"task_category_id\"=>\"5\", \"updated_at\"=>\"2012-09-04T13:46:13+02:00\"}]",

当我使用嵌套集合时,我基本上确保某个模型的 id 和所有属性都被对象封装。

// My fake JSON
{'id':'1', 'appointment':{
    'id':'50',
    'tasks':[
        {'id':'100', 'taskName':'groceries' /* etc. */},
        {'id':'200', 'taskName':'bank errand'}
    ]
}}

当我的约会模型接收到这个获取的数据时,我将在我的parse()或修改的set()方法中处理它。我将展示我所做的parse()

// Inside my appointment model definition
parse: function(response) {
    if (_.isUndefined(this.tasks)) {
        this.tasks = new TasksCollection();
    }
    this.tasks.reset(response.tasks);
    delete response.tasks;

    return response;
}

类似上面的东西。我的 TasksCollection 已model: Task定义,因此使用属性哈希重置将使用适当的数据(包括 id)填充嵌套在我的约会模型中的集合。

我不认为这可以解决您的问题,但是由于您提到了 Backbone 的做事方式,我认为(在许多方式中)说明这种方式可能会给您一些想法。

于 2012-09-05T07:21:42.277 回答