I have collection
{
"_id" : 1,
"title" : "Title",
"description" : "<p>Text ...</p>",
}
I need to get the description in Angular.
But when I output this data, I get a string <p>Text ...</p>
instead of a tag <p>
I have collection
{
"_id" : 1,
"title" : "Title",
"description" : "<p>Text ...</p>",
}
I need to get the description in Angular.
But when I output this data, I get a string <p>Text ...</p>
instead of a tag <p>