I want to be able to view JSON data through HTML using TypeScript.
My folders are as such:
- test/test.html
- test/test.ts
- test/test.json
{
"animals": [ {
"cat": "meow",
"dog": "woof",
"bird": "chirp"
} ]
}
I want to be able to view JSON data through HTML using TypeScript.
My folders are as such:
{
"animals": [ {
"cat": "meow",
"dog": "woof",
"bird": "chirp"
} ]
}
Cat:{{cat.value}
– Rod Flores Jun 30 '17 at 12:02