我試圖通過轉換我建造的查詢Instagram的香草JavaScript提要解析器在CoffeeScript我的手。我一直在靠近牆壁試圖讓邏輯在for循環中工作,我可以通過web上的100個示例獲得一個簡單的for循環,但我還沒有得到一個for循環中有更多的代碼。我接近完全錯誤嗎?我傳遞給函數的參數「results」是一個JSON對象。for循環在咖啡腳本
_feed: (results) ->
images = results.length
for img in images
a = document.createElement('a');
a.href = results.data[i].images.standard_resolution.url;
img = document.createElement("img");
img.src = results.data[i].images.low_resolution.url;
a.appendChild(img);
document.getElementsByTagName('body')[0].appendChild(a);
我不斷收到錯誤,說出意外的超時。有小費嗎?
如果'results.data'是一個對象,它不應該是'for..of'嗎? – elclanrs 2013-03-06 02:11:11
@elclanrs:是不是'results.data'數組?我認爲這是一個數組。 – Blender 2013-03-06 02:12:05
哦,也許我誤會了... OP說'results'是一個JSON對象...爲了 – elclanrs 2013-03-06 02:13:31