This is a JSON I get from a "post" request inside the system I'm working on right now:
{
"return": [
{
"id": 1,
"first_name": "Bonnie",
"last_name": "Little",
"email": "[email protected]",
"country": "Portugal",
"ip_address": "48.218.146.63"
},
{
"id": 2,
"first_name": "Judith",
"last_name": "Martin",
"email": "[email protected]",
"country": "Sierra Leone",
"ip_address": "233.120.55.214"
},
{
"id": 3,
"first_name": "Carl",
"last_name": "Richardson",
"email": "[email protected]",
"country": "Luxembourg",
"ip_address": "26.228.244.43"
},
{
"id": 4,
"first_name": "Carl",
"last_name": "Richardson",
"email": "[email protected]",
"country": "Luxembourg",
"ip_address": "26.228.244.43"
}
]
}
Do I have a way to use mustache to display only the data from the id=3 registry?
I'm using mustache and pure jquery
Here's a mustache like template. You'll need to find your item and then parse the template. I don't the calls for the mustache library but it shouldn't be too different.