所獲取的JSON數據我已經獲取的JSON數據,這是這個樣子:更改使用Angularjs
{
"id": "154",
"user_id": "1445674241",
"title": "Power of one",
"content": "<p><img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"/photo.png\" alt=\"Power of one\" width=\"455\" height=\"567\" /></p>\n<p> </p>\n<p>One is really powerful, you are one, God is one, earth is one. Love the one.<img style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"/photo.png\" alt=\"Power of one\" width=\"455\" height=\"567\" /></p>",
"num_views": "0",
"votes_up": "1",
}
我想改變這一切的img標籤的屬性(如追加SRC,改變高度&寬度)使用角度js。
我也在我的控制器中使用ng-bind-html呈現html代碼。其功能是:
$scope.renderHtml = function (html_code) {
return $sce.trustAsHtml(html_code);
};
幫助我改變img標籤的屬性。
這裏有什麼問題? – rupampatel
想要更改img標籤的屬性。 –