Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
194 views
Welcome To Ask or Share your Answers For Others

1 Answer

I think you need to do something like this,

var obj={};
obj[data.id]= data.value;
$scope.newcolumns.push(obj);

{data.id : data.value} is not a valied syntax data.id should be some name to a property it cannot be a variable. If you need to have variable field names then you need to do like above.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...