如何默认检索 Backbone.js 中第一个模型的详细信息?

发布于 2024-12-21 11:08:56 字数 406 浏览 0 评论 0原文

我想默认显示 Backbone 中第一个模型的详细信息,我该怎么做?

          this.wineList = new WineCollection(); 
          this.wineList.fetch();

检索值后,我想显示第一个模型。要检索给定 id 的模型详细信息,我的代码如下所示 -

              this.wine = this.wineList.get(id);
          this.wineView = new WineView({model: this.wine});
          this.wineView.render();

这方面的任何方向都会非常有帮助。

干杯!

I would like to display the details of the first model in Backbone by default, How can I go about this?

          this.wineList = new WineCollection(); 
          this.wineList.fetch();

After retrieving the value i would like to display the first model. To retrieve model details given its id, my code looks like this -

              this.wine = this.wineList.get(id);
          this.wineView = new WineView({model: this.wine});
          this.wineView.render();

Any direction in this regard will be very helpful.

Cheers!

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

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

发布评论

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

评论(1

少钕鈤記 2024-12-28 11:08:56

如果我正确理解您的问题,那么您正在寻找的是 at 方法 http://documentcloud。 github.com/backbone/#Collection-at

this.wine = this.wineList.at(0);

If I correctly understand your question, what you are looking for is the at method http://documentcloud.github.com/backbone/#Collection-at

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