如何从集合中获取模型

发布于 2024-11-07 00:11:00 字数 347 浏览 1 评论 0原文

我有下一个脚本:

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)”返回“未定义”? 我可能没有以正确的方式使用 get 方法吗?

I have the next script:

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));

Why does "games.get(0)" return 'undefined'?
May be I use get method not in correct way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

预谋 2024-11-14 00:11:00

简短而甜蜜,您需要:

games.at(0)

.get 用于属性。

Short and sweet, you need:

games.at(0)

.get is for attributes.

拥抱我好吗 2024-11-14 00:11:00

模型上的 AFAICT get() 用于属性,但在您的情况下,您正在处理一个集合,这意味着 get() 是:

“从集合中获取模型,由 id 指定。”

例如

collection.get(1); // Get model with id = 1 from collection

,因为您在制作新的俄罗斯方块游戏时没有提供 id,所以 Backbone 会自行生成一个 id,该 id 可能不是“0”。

然而,在你的情况下 at(index) 似乎就是你要找的那个,我的回答只是为了澄清事情。

例如

collection.at(0); // Get model at collection index 0

AFAICT get() on models is for attributes, but in your case you are dealing with a collection, which means get() is:

"Get a model from a collection, specified by id."

E.g.

collection.get(1); // Get model with id = 1 from collection

Because you haven't supplied an id when you made the new Tetris Game, Backbone will generate one on its own, which is likely not "0".

However in your case at(index) seems to have been the one you looked for, my answer was just to clearify things.

E.g.

collection.at(0); // Get model at collection index 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文