7 giriş alanına sahip olduğum bir iyonik uygulamaya sahibim. Yaptığım şey, bu değerleri giriş alanlarından localstorage'a kaydediyorum.İyonik Uygulamada LocalStorage'da veri kaydetme
window.localStorage.setItem('Frames', JSON.stringify(PositionFrames));
$scope.Save = function() {
var FrameValues = {
"PositionName": $scope.data.PositionName,
"box1": 'j0' + $scope.data.box1,
"box2": 'j1' + $scope.data.box2,
"box3": 'j2' + $scope.data.box3,
"box4": 'j3' + $scope.data.box4,
"box5": 'j4' + $scope.data.box5,
"box6": 'gr' + $scope.data.box6
};
var temp = [];
tmp = JSON.parse(window.localStorage.getItem('Frames'));
temp.push(tmp);
temp.push(FrameValues);
window.localStorage.setItem('Frames', JSON.stringify(temp));
// window.localStorage['Frames'] = JSON.stringify(temp)
console.log(JSON.stringify(temp));
};
ben console.log verileri ve baskı verileri kaydetmek için düğmesine basın zaman keşke şu görebilirsiniz sonuçlar: değil de veri görmeniz Ancak eğer
[[[{"PositionName":"Home","box1":90,"box2":90,"box3":90,"box4":90,"box5":90,"box6":90}],{"PositionName":"Amrit","box1":"j058","box2":"j161","box3":"j2143","box4":"j3152","box5":"j4157","box6":"gr159"}],{"PositionName":"Amrit","box1":"j058","box2":"j161","box3":"j2143","box4":"j3152","box5":"j4157","box6":"gr159"}]
aşağıda angularjs denetleyicisi benim kodudur sipariş, bunun neden böyle bir formatta olduğunu bilmiyorum [{}, {}, {}]. Bu ek [[[nereden geldiğini] anlayamıyorum.
Nasıl çözerim?
sayesinde Millet :)