I'm fetching a nested JSON object, which can be very large, and which contains some picture URLs. Something like:
[
{
'id':1,
'title': 'Title 1',
'picture': 'url/for/picture/one.png'
},
{
'id':2,
'title': 'Title 2',
'picture': 'url/for/picture/two.png'
},
{
'id':...,
'title': '...',
'picture': 'url/for/picture/....png'
},
{
'id':n,
'title': 'Title n',
'picture': 'url/for/picture/n.png'
},
]
I will be loading different pictures from the model in a view every time, so I would like this images (or at least some of them) to be preloaded in memory or something like that, in order to improve my application's performance.
Is that possible in Backbone and/or Marionette?