I have saved a JSON string in one of my database columns. Now while retrieving it I am getting a whole string printed but the specific variable.
Following is the Template
<!-- The card -->
<ion-card *ngFor="let comment of feed[0].meta.comments">
<div *ngIf="comment.comment_by" class="card-title"></div>
<div class="card-subtitle">{{comment}}</div>
</ion-card>
<!-- The card End-->
Here {{comment} gives the following output
"{"comment_by_id":"4","comment_by":"Elizabeth","comment":"The Comment","comment_date":"02-05-2018 09:37:03pm"}"
but {{comment.comment_by_id}} will print nothing. How can I get the data accessed through the JSON string?
JSON Response for reference: