How to get angular project with localStorage to work in every browser?
问题 I'm working on a e-com site which has a cart list component, I implemented it using localStorage as follows, export class CheckOutHomePageComponent implements OnInit { currentArr:string; myCart:string[] = []; prices:any; constructor( private dataTransmit: DataTransmitService, private itemsService: ItemsService, ) { } ngOnInit(): void { this.dataTransmit.currentItemId.subscribe(itemID => { this.myCart = []; this.myCart = this.addToCart(itemID); for(let i of this.myCart){ console.log("myCart :