$scope.appdata = [{name: '', position: '', email: ''}];
This is the array which I created in angular controller.
Then I inserted some values in to array by using push method:
$scope.appdata.push({name: 'jenson raby', position: '2', email: 'jensonraby@gmail.com'});
This is the array values after insertion:
$$hashKey:"00F",name:"jenson raby",position:"2",email:"jensonraby@gmail.com",
Here an extra $$hashKey
has been added to the array after insertion, but I need to remove this from array.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…