私は現在、作成した標準の JavaScript フィード パーサーを Instagram のクエリ用に変換することで、CoffeeScript を試しています。私は壁に頭をぶつけて、for ループ内でロジックを動作させようとしました。単純な for ループを Web 上の何百もの例に従って動作させることができますが、まだ取得していません。 for ループ内のコードが増えます。私はこれに完全に間違っていますか?関数に渡す引数「結果」は JSON オブジェクトです。
_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);
予期しないアウトデントというエラーが発生し続けます。任意のヒント?