我是 Backbone.js 的新手,现在我需要使用 ajax 处理 BackBone.js 中的快速路由器方法结果,模型,视图和集合,但我仍然不清楚。
应用程序.js
var express=require('express');
var app=express();
app.use(express.bodyParser());
app.all('*',function(req,res){
res.writeHead(200, {'Content-Type': 'text/json'});
res.write(JSON.stringify(result));
res.end();
});
app.listen(8080);
我正在处理所有请求,具体取决于我需要发送页面的标题和正文的请求。在那个“结果”参数中,我正在发送正文和标题,但我不知道如何获得该结果Backbone.js.下面的代码是处理来自节点js的ajax响应。是否正确。
客户端.js
var MyModel = Backbone.Model.extend();
var MyCollection = Backbone.Collection.extend({
url: '/index.html',
model: MyModel
});
var coll = new MyCollection();
coll.fetch({
error: function (collection, response) {
console.log('error', response);
},
success: function (collection, response) {
console.log('success', response);
}
});