我的應用程序使用Angularjs和ionic進行構建,使用cordova作爲混合移動應用程序,當嘗試渲染從後端接收的svg內容時,應用程序無法呈現預期圖。如何在離子內容中呈現svg
這是我的代碼看起來像
<ion-tab title="Diagram" icon-on="mcfly">
<ion-view>
<ion-content class="padding" ng-class="{'has-loading': header.isLoading}">
<h4>System Diagram</h4>
{{diagram}}
</ion-content>
</ion-view>
</ion-tab>
但我看到的是SVG數據,而不是形象,我錯過任何聲明或任何東西嗎?
感謝
彼此的答案,我發現是http://stackoverflow.com/questions/9381926/angularjs-insert-html-into-view – Amit