gpt4 book ai didi

javascript - 如何从集合中获取模型

转载 作者:数据小太阳 更新时间:2023-10-29 05:48:53 26 4
gpt4 key购买 nike

我有下一个脚本:

var Game = Backbone.Model.extend({});

var GamesCollection = Backbone.Collection.extend({
model: Game
});

var games = new GamesCollection();

var portal = new Game({name: 'Tetris', year: '2017'});
games.add(portal);

console.log(games.get(0));

为什么“games.get(0)”返回“undefined”?可能是我使用 get 方法的方式不正确?

最佳答案

简短而甜蜜,你需要:

games.at(0)

.get 用于属性。

关于javascript - 如何从集合中获取模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5980355/

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