如何从数据库中检索JSON对象并将其呈现为可点击链接? 当我检查我的JSON对象时,它看起来像这样:
{
"_id": {
"$oid": "5321183a017d19ca5d00000a"
},
"title": "test",
"time_Date": "1394677818224",
"imageUrl": "test",
"post": "<a href='http://www.w3schools.com/'>Test</a>"
}
我的博客提取此对象,但它显示整个脚本标记。
答案 0 :(得分:1)
Put&#34; \&#34;字符串中每个特殊字符的面前。
{
"_id": {
"$oid": "5321183a017d19ca5d00000a"
},
"title": "test",
"time_Date": "1394677818224",
"imageUrl": "test",
"post": "<a href='http:\/\/www.w3schools.com\/'>Test</a>"
}