0

我在 Backbone 中遇到了一些问题。这是我收藏中的一个项目的示例:

var gifs = new GifCollection([
{image: "images/gifs/wolf.gif", 
url_title: "Wolf",
ratings: [0,0], 
rating: 3, comments: "Awesome picture.", 
title:"Wolf", category:"Animals"},
]);

现在在我的普通/主页视图中,我通过 FOR 循环列出每个项目这是:

            var Fill_me_with_gifs = Backbone.View.extend({
            el: "#fill_me_with_gifs",
            render: function () {
                var template = $("#user-view-template").html();
                var gifs_html = '';
                var gifs = this.collection.models;

                for (var gif in gifs)
                {
                    gifs_html += '<tr>';
                    gifs_html += '<td>' + "<h4>" + gifs[gif].get("title") + "</h4>" + '</td>';
                    gifs_html += '</tr>';
                    gifs_html += '<tr>';
                    gifs_html += '<td>' + "<img src=\"" + gifs[gif].get("image") + "\"" + " width=\"500\"" + ">"+ '</td>';
                    gifs_html += '</tr>';
                    gifs_html += '<tr>';
                    gifs_html += '<td>' + "<a href=\"#detail/" + gifs[gif].get("url_title") + "\"> View comments, rate and more</a>" + "</td>";
                    gifs_html += '</tr>';
                }
                this.$el.html( _.template( template, { gifs: gifs_html }));

            },

        });

现在我还想要一个详细信息视图,我已经拥有带有 url_title 的唯一链接(见上文)的每张图片 例如,当我单击第一个 gif 下方的链接时,我现在被重定向到 #detail/Wolf 而不是去通过 for 循环,我只需要一个 gif 在我看来。

我显然需要用 url_title 来做这件事,但我不知道到底是怎么回事..

所以现在我只有这个作为详细视图:

        var Fill_me_with_one_gif = Backbone.View.extend({
        el: "#fill_me_with_gifs", 
        render: function (url_title) {
            var template = $("#user-view-template").html();     
            var gifs_html = '';
            var gifs = this.collection.models;
                //NO FOR LOOP BUT ONLY SINGLE ELEMENT FROM COLLECTION
                //I don't know what to put here :|

            },
            });

这是我的详细信息页面路线

            router.on("route:detail", function (url_title) {
            $(".nav li").removeClass("active");
            $("#nav-detail").addClass("active");
            console.log("Show Detail Page for " + url_title);

            var fill_me_with_one_gif = new Fill_me_with_one_gif({ collection: gifs });
            fill_me_with_one_gif.render();

这是我的路由器:

            var Router = Backbone.Router.extend({
        routes: {
            "" : "home",
            "categories" : "categories",
            "popular" : "popular",
            "detail" : "detail",
            "detail/:url_title" : "detail" //this is the one I'm having trouble with
        }
        });

我将非常感谢这方面的帮助。谢谢你。

4

1 回答 1

1

您可以使用Backbone Collection.where()选择与模式匹配的项目。尝试:

var matchingModels = gifs.where({
    "url_title" : url_title
});
if(matchingModels.length>0){
    //Select the first matching model
    selectedModel = matchingModels[0]
}

这将返回所有匹配模型的数组。您可以检查长度,然后如果您只对第一项感兴趣,请拉 [0]。您必须将 url_title 与集合一起传递给新的 Fill_me_with_one_gif,或者事先识别模型并发送(我可能会选择第二个)。为此,您在详细信息页面上的路线将如下所示:

router.on("route:detail", function (url_title) {
        $(".nav li").removeClass("active");
        $("#nav-detail").addClass("active");

        var matchingModels = gifs.where({
            "url_title" : url_title
        });
        if(matchingModels.length && matchingModels.length>0){
            var fill_me_with_one_gif = new Fill_me_with_one_gif({ model: matchingModels[0] });
            fill_me_with_one_gif.render();
        } else {
            //No Matching URL TITLE?  so Dont render the details
        }

然后,您可以在 Fill_me_with_one_gif 中只使用您需要的模型

或者,如果您已经为 GifColletiion 定义了一个模型,您可以使用Backbone idAttribute来告诉 Backbone 如何唯一地标识项目 ala:

var GifCollectionItem = Backbone.Model.extend({
    idAttribute : "url_title"
});

然后,您可以使用 {COLLECTION}.get("wolf"); 从集合中选择项目

编辑:对不起,那是惊慌失措。这是最简单的答案:

var Fill_me_with_one_gif = Backbone.View.extend({
    el: "#fill_me_with_gifs", 
    render: function (url_title) {
        var template = $("#user-view-template").html();     
        var gifs_html = '';
        var matchingModels = gifs.where({
            "url_title" : url_title
        });
        if(matchingModels.length>0){
            //Select the first matching model
            selectedModel = matchingModels[0]
        }

        //THIS IS WHERE YOU DRAW THE SELECTED DETAILS
        //Use selectedModel to access your info
        //EX:  selectedModel.get("name")


    },
});
于 2013-11-01T14:24:31.667 回答