所以我有一个在android上工作的代码,在IOS上却没有。这段代码使用javascript区分了HTML的select标签中的列表。
怎么可能Android的代码无法在IOS上运行。
有人可以帮我吗?
var list = $scope.test_.filter((x,i,a) => a.findIndex(y => y.member_type === x.member_type) == i);
$scope.list_ = list;
致谢。
IT提示语法错误:意外令牌'>'
答案 0 :(得分:0)
您的浏览器似乎不支持箭头功能。尝试改用常规函数:
var list = $scope.test_.filter(function (x, i, a) {
return a.findIndex(function (y) {
return y.member_type === x.member_type;
}) == i;
});
$scope.list_ = list;