Как мне искать по модели или году в массиве, хранящемся в localstorage? Мой массив в localstorage key: cars Значение: 0: {модель: "Модель 1", год: "2020"} 1: {модель: "Модель 2", год: "2019"}
форма
<form>
<table>
<tr>
<td>
<label>Model:</label>
<input type="text" class="" name="modelCar"
[(ngModel)]="modelCar"/>
</td>
</tr>
<tr>
<td>
<label>Year:</label>
<input type="text" class="" name="year"
[(ngModel)]="year"/>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Search" class=""
(click)="search()" />
</td>
</tr>
</table>
</form>
CarComponent
@Component({
selector: 'car-data',
templateUrl: './car.component.html',
})
export class CarComponent {
model: string;
year: number;
search() {
//Array in localstorage
localStorage.setItem("car", JSON.stringify(this.cars));
var storedNames = JSON.parse(localStorage.getItem("cars"));
console.log(storedNames);
console.log('Search');
}
}