(SVG を使用して) 小節に複数のビートを作成し、それらを並べて配置したいと考えています。関数自体で使用するために underscore.js でイテレータを追跡する方法を少し混乱させています。
これが私が持っているものです:
_.each(beats, function(beat) {
// create a beatview
var measurePassingToBeatViewParamaters = {
beatXLocation: beatXLocation
// i want this to be something like beatXLocation: beatXLocation * beatCountIterator
};
new beatView(measurePassingToBeatViewParamaters); //backbone View
// then somewhere increase the beatCountIterator ++;
}, this); //this is a measure