我是主干、快递和 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);