I have a single json file that I need to connect with a variable in order to display it on the user interface.
testjson= {"date":1468497879354,"faulty":"F-3","mileage":"150,900 mls","search":[]}
Also, in the HTML code:
<div>
<span>{{ testjson }}</span><--- this is where I'm getting the JSON object above
Date:{{date}}
Faulty:{{faulty}}
Mileage: {{mileage}}
<div>
How can I bind it so that I can retrieve specific values from the object?