由於你的描述是結合$scope
,你通常可以用雙訪問它的視圖大括號表示法{{}}
:
<p> {{post.description}} </p>
<!-- will generate "<style>#bo{font-weight:bold}</style> <h1 id='bo'> HI</h1> <p>My name is bamidele</p>"" -->
<!-- Note : you started with a h5 tag but closed with a h1 tag in your question -->
這將是更多的方式清潔和最佳實踐,如果你單獨的樣式,邏輯和內容:
controller.js:
controller('DemoCtrl', ['$scope', function ($scope) {
$scope.description = '<h5 id='bo'> HI</h5> <p>My name is bamidele</p>';
}])
的style.css:
#bo{
font-weight: bold;
}
view.h tml:
{{post.description}} // will generate <h5 id='bo'> HI</h5> <p>My name is bamidele</p>
'但它沒有工作'不是一個適當的問題描述。應該解釋什麼是或不會發生什麼錯誤 – charlietfl