我对backbone.js不熟悉。目前正在开发一个nw.js应用程序,我必须嵌入一个通过骨干网构建的现有应用程序。
如果有替代方法,我不想运行本地网络服务器只是为了使用.fetch方法。我可以使用node fs package轻松读取文件。
这是代码;
loadpages: function(){
this.activeBook.fetch({
url: url, //file://.......
success: function(collection, response, options){
self.renderBook();
self.renderNav();
},
error: function(collection, response, options){
//alert("Error");
return;
}
});
}
renderBook: function(){
myapp.bookView = new myapp.BookView({
collection: this.activeBook,
instanceURL : url,
});
},
目标:
var fs = require('fs');
fs.readFile(url, 'utf8', function (err, data) {
if (err) throw err;
var book = JSON.parse(data);
// render the json as model
});
注意:我确实有--allow-file-access-from-files --allow-file-access
铬箭,但抓取仍然无效。
答案 0 :(得分:0)
好吧,也许不是一个好主意,因为我正在修补jQuery,但我已经设法通过更改jQuery的.done回调来添加状态代码'0'来成功回调;
// Determine if successful
isSuccess = status === 0 || status >= 200 && status < 300 || status === 304;