30/09/2018, 23:13
Angular lỗi khi view
Dùng angular js mình không hiểu tại sao nó không hiển thị đúng. nhờ anh chị em giúp đỡ
script của mình thế này
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.msg = "<b>Hello world</b>";
});
html của mình thế này
<div ng-app="myApp" ng-controller="myCtrl">
msg : {{msg}}
</div>
Tại sao nó không ra Hello world
mà lại ra thế này <b>Hello world</b>
Bài liên quan
làm vây ra vậy là đúng rồi, muốn nó hiểu html tag thì tìm hiểu và dùng $sce của nó
ref: https://docs.angularjs.org/api/ng/service/$sce. chịu khó đọc API document qua hết rồi làm
wow, for(i=0;i<100000…;i++) {thank a tons}