несколько шаблонов на одном модале начальной загрузки с использованием AngularJS

function matrixify( source, count )
{
    var matrixified = [];
    var tmp;
    // iterate through the source array
    for( var i = 0; i < source.length; i++ )
    {
        // use modulous to make sure you have the correct length.
        if( i % count == 0 )
        {
            // if tmp exists, push it to the return array
            if( tmp && tmp.length ) matrixified.push(tmp);
            // reset the temporary array
            tmp = [];
        }
        // add the current source value to the temp array.
        tmp.push(source[i])
    }
    // return the result
    return matrixified;
}

Если вы хотите фактически заменить внутренние значения массива, я считаю, вы можете вызвать следующее:

source.splice(0, source.length, matrixify(source,3));
0
задан Ajay Srikanth 24 February 2015 в 19:34
поделиться