有人可以帮我解决以下问题吗?
我有一个对象数组。我用一个按钮将元素设置为“ true”(每次单击一次,下一个)。 我想将这些“ true”值更改存储在数组中,因此当我再次打开该应用程序时,默认情况下将设置为true的那个。
public x : any = ["x0", "x1", "x2", "x3", "x4", "x5", "x6",
"x7", "x8", "x9", "x10", "x11", "x12"];
//to turn an element true
buttonclick(){
this.counter+=1;
this.storage.set("Count",this.counter);
var xNum=JSON.parse(JSON.stringify("x"+this.counter));
this.x[xNum] = true;
//unfortunately, it does not save the true status of the elements:
this.storage.set('xArray', JSON.stringify(this.x));
}