我有包含图像的文件夹;我在文件夹 uploads/ 上调用 fetch,我的 GET 以 HTML 格式返回以下响应(无 json 等)
<h1>Index of /backbone_images/uploads</h1>
<ul><li><a href="/backbone_images/"> Parent Directory</a></li>
<li><a href="2012-12-11%2015.30.221.jpg"> 2012-12-11 15.30.221.jpg</a></li>
<li><a href="ian1.jpg"> in1.jpg</a></li>
<li><a href="imagedummy.png"> imagedummy.png</a></li>
我尝试使用以下代码将/我获取的数据渲染到模型等中:
window.Person = Backbone.Model.extend({});
window.AddressBook = Backbone.Collection.extend({
url: 'uploads/',// declare url in collection
model: Person
});
window.Addresses = new AddressBook();
window.AppView = Backbone.View.extend({
el: $('#left_col'),
initialize: function() {
Addresses.bind('reset', this.render); // bind rendering to Addresses.fetch()
},
render: function(){
console.log(Addresses.toJSON());
}
});
window.appview = new AppView();
Addresses.fetch();
但是没有任何东西被渲染或附加到我的左列:所以-->我可以从包含这样的图像的目录中获取吗?另外,我可以对 HTML 响应做什么,如何将其加载到模型中,使其呈现等(如果有任何方法)?