У меня есть простой сервис, который получает и устанавливает элемент в локальном массиве объектов NOTES с помощью localStorage, но каждый раз, когда страницы обновляют введенные данные до потери, и остаются только исходные данные в массиве const NOTES.Я не знаю, что я делаю здесь не так.
Сервисный код:
import { Injectable } from '@angular/core';
import { NOTES } from './localnotes';
import { INote } from './shared/interfaces';
const STORAGE_KEY = 'notes';
@Injectable({
providedIn: 'root'
})
export class NotesService {
constructor() {
localStorage.setItem(STORAGE_KEY, JSON.stringify(NOTES));
}
getNotes() {
try {
return JSON.parse(localStorage.getItem(STORAGE_KEY));
} catch (e) {
console.error('Error getting data from localStorage', e);
return null;
}
}
deleteNotes() {
}
newNote(note: INote) {
const tempnote = note;
NOTES.push(tempnote);
localStorage.setItem(STORAGE_KEY, JSON.stringify(NOTES));
}
}
Код компонента:
import { Component, OnInit} from '@angular/core';
import { INote } from '../shared/interfaces';
import { NotesService } from '../notes.service';
@Component({
selector: 'app-notes',
templateUrl: './notes.component.html',
styleUrls: ['./notes.component.css']
})
export class NotesComponent implements OnInit {
notes: INote[];
newNote: boolean = false;
hideNewNote: boolean = false;
constructor(private noteService: NotesService) {
const data = noteService.getNotes();
this.notes = data;
}
ngOnInit() {
}
makeNewNote() {
this.newNote = true;
}
getValues(title, note, tag) {
this.newNote = false;
const tempnote = {title: title, note: note, date: new Date(),
tag: tag};
this.noteService.newNote(tempnote);
this.notes = this.noteService.getNotes();
}
}
const ПРИМЕЧАНИЯ:
import { INote } from './shared/interfaces';
export const NOTES: INote[] = [
{title: "title1", note: "note1", date: new Date(), tag: "tag1"}
];