我在创建客户端Backbone模型时遇到困难,该模型在初始化时从ExpressJS服务器检索一些XML。创建Backbone模型时,初始化函数调用model.fetch()
并在查询字符串中传递其模型ID。服务器应该读取ID并返回正确的XML。
这当前不起作用(下面的代码),当我在浏览器中调试时,我可以看到网络请求看起来是正确的,例如请求可能是/biomodels?id=BIOMD0000000001
,但请求保持挂起状态它是从Backbone发起的。
但是,如果我使用浏览器(Chrome),并转到/biomodels?id=BIOMD0000000001
,则会正确检索模型。
Express服务器路由处理程序:
/*global exports require*/
exports.getModel = function (req, res) {
// Dependencies
var biomodels = require('biomodels').BioModelsWSClient;
// Get SBML From ID
console.log('requested ID: ' + req.query.id)
console.log(biomodels.getModelSBMLById(req.query.id, function (err, results) {
console.log(err + results);
res.send(err + results);
}));
};
骨干模型:
define([
'underscore',
'backbone'
], function (_, Backbone) {
'use strict';
var BioModel = Backbone.Model.extend({
defaults: {
sbml: 'was not fetched',
id: 'was not assigned'
},
initialize: function () {
var modelId = this.id,
modelSbml = this.sbml;
this.fetch({
data: {
id: modelId
},
type: 'GET',
error: function (jqXHR, textStatus, errorThrown) {
console.log('error in GET: ' + textStatus + errorThrown);
},
url: 'biomodels',
success: function (data, textStatus, jqXHR) {
modelSbml = data;
console.log('loaded ' + modelSbml);
}
});
}
});
return BioModel;
});