Html code::
{{notes.title}} |
{{notes.body}} |
i just did this.notes=JSON.parse(data._body); and worked remaining code is as above.
data => {
console.log(data._body);
this.notes=JSON.parse(data._body); // parsing here
console.log("notes array"+this.title);
console.log("Title :: "+this.notes.title);
},