i'm using angular js for creating the json, but when i tried to make a json as shown below
$scope.newcolumns =[{"File 1":"file1.png"},{"File 1":"file2.png"}]
i'm getting missing : after property id
my code is as given below
$scope.newcolumns = [];
angular.forEach( $scope.datas, function(data){
$scope.newcolumns.push({data.id : data.value});
});
can anyone please tell me some solution for this
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…