1

我是主干、快递和 mongodb 的新手。我正在尝试传递查询字符串以按字段搜索 mongodb 集合。我做错了什么。如果我从路由器中注释掉“获取”,则会找到该页面。如果我尝试获取,那么我会收到一个找不到页面的错误。我试图隔离它在哪里中断,但骨干架构仍然让我感到困惑。提前致谢。(我打赌这是我的 mongodb 调用中的语法问题)克里斯汀

这是我的代码。

此 URL 应返回“type”= 3 的集合。

localhost:8888/#content/3

模型/models.js:

window.Content = Backbone.Model.extend({

   urlRoot: "/content",

    idAttribute: "_id"

});

window.ContentCollection = Backbone.Collection.extend({

    model: Content,

    url: "/content"

});

意见/内容.js

window.ContentListView = Backbone.View.extend({

    initialize: function () {
        this.render();
    },

    render: function () {

        //return this;

       this.$el.append('<ul class="thumbnails">');

        this.collection.each(function(model) {
            this.$('.thumbnails').append(new ContentView({model: model}).render().el);
        }, this);

        return this;
    } });

window.ContentView = Backbone.View.extend({

    tagName: "li",

    initialize: function () {
        this.model.bind("change", this.render, this);
        this.model.bind("destroy", this.close, this);
    },

    render: function () {
        $(this.el).html(this.template(this.model.toJSON()));
        return this;
    }

});

意见/main.js

var AppRouter = Backbone.Router.extend({

    routes: { "content/:type" : "contentType" },

    contentType: function(type) {
        var contentList = new ContentCollection({type : type});
        contentList.fetch({success: function(){
            $("#content").empty().append(new ContentListView({collection: contentList}).el);
        }});
        this.headerView.selectMenuItem('build-menu');
    },

    utils.loadTemplate([
       'ContentView'
    ], function() {
    app = new AppRouter();
    Backbone.history.start(); });

内容视图.html

name (<% tag won't print here)

路线/modules.js

exports.findContentByType = function(req, res) {

    var type = req.params.type;

    db.collection('content', function(err, collection) {

        collection.find({'type': type.toString()}).toArray(function(err, items) {

            res.send(items);
        });

    }); 

};

服务器.js

app.get('/content/:type', module.findContentByType);
4

1 回答 1

1

我可以在这里看到几个问题:

  1. this.headerView.selectMenuItem('build-menu');(在路由器中)意味着您已headerView在路由器对象中定义,但未定义。
  2. 同样,this.templateinsideContentView也没有定义

当我删除 #1 中的行并在以下位置定义一个虚拟模板时ContentView

template: _.template("<div> Test: <%= version %> </div>"),

然后视图至少呈现 -请参见此处。(这是虚拟数据——我无法确认您的服务器正在返回有效/预期的 JSON。)

于 2012-12-22T07:16:03.607 回答