gpt4 book ai didi

arrays - Angular js中两个$scope数组的差异

转载 作者:行者123 更新时间:2023-12-01 07:19:04 25 4
gpt4 key购买 nike

有没有办法返回angularjs中作用域中存在的两个数组之间的差异

例如,

 $scope.user1 = ['a', 'b'];
$scope.user2 = ['a', 'b', 'c', 'd'];

这两者的差异应该给我另一个作为
$scope.user3= ['c','d']

最佳答案

Underscore.js 对此有不同的方法。

http://underscorejs.org/#difference

$scope.user1 = ['a', 'b'];
$scope.user2 = ['a', 'b', 'c', 'd'];
$scope.user3 = _.difference($scope.user2, $scope.user1);

关于arrays - Angular js中两个$scope数组的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23209408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com