我正在尝试使用 Backbone 为客户端和 Node.js 为服务器开发一个简单的文件浏览器。目前,当涉及到子文件夹时,我非常纠结于如何设计模型
客户端代码看起来像
app.MyFile = Backbone.Model.extend({
defaults: {
path: '', // id of the model will be the path + filename
content: '', // content of the file
isDir: false // if file is a directory
}
});
var MyFileList = Backbone.Collection.extend({
model: app.MyFile,
url: '/api/files'
});
// create global collection of files
app.MyFiles = new MyFileList();
// displays file name
var MyFileItemView = Backbone.View.extend({
events: {
'click .clickable': 'view'
},
...
view: function (source) {
if (this.model.toJSON().isDir) {
this.model.fetch();
// XXX what to do here
_.each(this.model.get('content'), function (obj) {
console.log(obj.toJSON()); // error - no toJSON method
});
} else {
// calls another view that calls the model.fetch
// to display the content (no issue here)
}
},
});
var MyFilesListView = Backbone.View.extend({
initialize: function () {
// XXX Not sure if I should listen on MyFiles collection...
app.MyFiles.on('reset', this.render, this);
},
render: function () {
app.MyFiles.each(function (file) {
new MyFileItemView({model:file});
}, this);
});
app.AppView = Backbone.View.extend({
initialize: function () {
// fetch all files
app.MyFileList.fetch();
}
});
// app.js (point of entry)
$(function() {
// Kick things off by creating the **App**.
new app.AppView();
});
我的服务器代码:
var express = require("express"),
...
app.get('/api/files', function(req, res) {
...
// return file list (including folder - no issue here)
}
app.get('/api/files/:id', function(req, res) {
var fileModel = createFileModel(req.params.id); // create file model
if (!fileModel.isDir) {
// if file is not directory, then simply read the content and return
// it back to the client -- no issue
...
} else {
var files = [];
// read the directory to find all the files and push it to
// files array
...
fileModel.content = files;
res.send(fileModel);
}
}
目前我不确定这样做的正确方法是什么。我的问题:
- 如何表示模型对象本身。如果我应该将内容设置为 MyFile 的集合
isDir===true
吗?如果是这种情况,我该怎么做?调用toJSON()
模型的内容会引发异常,因为toJSON
未定义 - 还有关于它是否也
MyFilesListView
应该听全局集合?现在我需要处理子文件夹,这似乎不对。 - 或者我应该在尝试查看子文件夹时覆盖全局集合?
- 我的服务器代码实现是否正确?我现在遇到的问题是,当我将内容放入数组并将 fileModel 发送回客户端时,文件列表不会反映在模型本身中 - 也许我必须覆盖
parse
?
我在这里读了一些帖子
但我仍然不确定如何应用它...... Javascript令人困惑:(