如何使用angularjs从数组中随机取n个元素?

时间:2015-06-10 11:48:46

标签: javascript arrays angularjs html5

我有一个包含元素列表的数组。

app.controller("MainController", function($scope){
    $scope.names= [
        {
            value: "q1"
        },
        {
            value: "q2"
        },
        {
            value: "q3"
        }
    ];
});

我需要随机取两个元素并分配给一个新数组。我该怎么办?

1 个答案:

答案 0 :(得分:1)

您必须只使用javascript才能完成此操作。因为AngularJS不是编程语言。

检查出来:

if (!Math.getRandomValueBetween) {
    Math.getRandomValueBetween = function (from, to) {
        return Math.floor(Math.random() * (to - from + 1) + from);
    };
}
//USAGE -- Math.getRandomValueBetween(100,1000) //950


if (!Array.prototype.getRandom) {
    Array.prototype.getRandom = function () {
        return this[Math.getRandomValueBetween(0, this.length - 1)];
    };
}
//USAGE -- [1,34,56,76,9,67,5].getRandom();

From KnightCoder gist