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>

Nguyen Ca viết 01:16 ngày 01/10/2018

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

Thuc Nguyen Tan viết 01:18 ngày 01/10/2018

wow, for(i=0;i<100000…;i++) {thank a tons}

Bài liên quan
0