gpt4 book ai didi

javascript - 如何将主干模型插入子集合?

转载 作者:行者123 更新时间:2023-11-30 18:25:06 25 4
gpt4 key购买 nike

模型:

class Device extends Backbone.Model
url: '/device'
initialize: ->
console.log "Device model created..."
@set
controllers: new Controllers

class Controller extends Backbone.Model

收藏:

class Controllers extends Backbone.Collection
model: Controller

代码:

device = new Device
controller = new Controller
controller1 = new Controller
controller.set
name: "state1"
value: "on"
controller1.set
name: "state2"
value: "on"
device.set
id: 1
name: "foo"
controllers: [controller, controller1]

错误消息(在“ Controller ”上使用 .each 时):

TypeError: Object [object Object],[object Object] has no method 'each'

这个想法是每个设备都拥有一个 Controller 的子集合。我的简单问题是如何将模型添加到这个子集合中?上面的代码似乎用数组覆盖了集合...

最佳答案

您正在用 array 替换属性 controllers。由于它是一个集合,您需要使用 addreset,具体取决于您要执行的操作。

关于javascript - 如何将主干模型插入子集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11091245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com