I just made a query to my database which I return object
These store them in localstorage
localStorage.setItem("Tickets", JSON.stringify(response));
and in another function I call them like this:
var headshot = localStorage.getItem("Tickets");
It happens that I have a variable repo:
var repos = [
{
'rut' : '...here..',
'numero' : '...here...',
}
and I want to fill it with the data obtained and then display it in a search engine with ng-repeat ...
How can I do it?
I'm getting tangled up, Here I have the html code since I'm using Angular-material:
implement the second example:
thanks to those who are helping me!