页面初次加载后,不是一直存在这个遗漏问题,时有,时没有。遗漏的数据,在刷新页面后出现!
所有的数据与样式加载都是通过angular实现的,
代码如下:
//初始$scope.tablebody
$scope.vstablehead = [];
$scope.settablebody = function () {
for (var i = 0; i < $scope.specification.length; i++) {
//$scope.tablehead.push($scope.specification[i].name)
$scope.tablebody.push({'options': []}); //创建子项
$scope.recursionTablebody.push([]);//创建递归源子项[]
for (var j = 0; j < $scope.specification[i].entries.length; j++) {
if ($scope.specification[i].entries[j].isSelected) {
//$scope.initisChecked($scope.specification[i].name)
$scope.tablebody[i].options.push($scope.specification[i].entries[j].value)
//if ($scope.tablehead.length==0) {
// $scope.tablehead.push($scope.specification[i].name)
//} else {
// for (let y = 0; y < $scope.tablehead.length; y++) {
// if ($scope.specification[i].name != $scope.tablehead[y]) {
// $scope.tablehead.push($scope.specification[i].name)
// }
// }
//}
}
}
for (var p = 0; p < $scope.tablehead.length; p++) {
}
if ($scope.tablebody[i].options.length != 0) {
$scope.tablehead.push($scope.specification[i].name)
$scope.vstablehead.push($scope.specification[i].name)
}
console.log($scope.tablehead)
}
// $scope.tablebody.push({'options': []}) //创建子项
// $scope.recursionTablebody.push([])//创建递归源子项[]
for (var d = 0; d < $scope.tablebody.length; d++) {
//console.log($scope.tablebody[d].options)
$scope.recursionTablebody[d] = $scope.tablebody[d].options
}
//console.log(JSON.stringify($scope.recursionTablebody))
// console.log(JSON.stringify($scope.tablebody))
//初始取得页头
$scope.tablehead = $scope.gettablehead
madenew($scope.recursionTablebody)//生成新$scope.tablebody
console.log(JSON.stringify($scope.tablebody))
}
//初始表格内容
$scope.initisChecked = function (name, index, childItem) {
var headIndex //页头位置
$scope.tablehead.push(name)
$scope.tablebody.push({'options': []}) //创建子项
$scope.recursionTablebody.push([])//创建递归源子项[]
if ($scope.tablehead.indexOf(name) == -1) {
$scope.tablehead.push(name)
$scope.tablebody.push({'options': []}) //创建子项
$scope.recursionTablebody.push([])//创建递归源子项[]
}
console.log($scope.tablehead)
////保存子项 ----begin
headIndex = $scope.tablehead.indexOf(name)
if ($scope.tablebody[headIndex].options.indexOf(childItem) == -1) {//不包括才新增
$scope.tablebody[headIndex].options.push(childItem)
}
////保存子项 ----end
//console.log(JSON.stringify($scope.tablebody))
for (var d = 0; d < $scope.tablebody.length; d++) {
//console.log($scope.tablebody[d].options)
$scope.recursionTablebody[d] = $scope.tablebody[d].options
}
//console.log(JSON.stringify($scope.recursionTablebody))
// console.log(JSON.stringify($scope.tablebody))
madenew($scope.recursionTablebody)//生成新$scope.tablebody
}
$scope.$apply();你在控制器的底部加上这一行试试