I've set up simple back bone code were I'm fetching from a directory which contains images -
url: 'uploads/'
the fetch is succesful, but my results basically contains an html list of the images in the directory
like :
<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>
A) Should the server be returning JSON if fetching from a directory of images? B) If not is there an easy way to convert this HTML response to JSON?
