I am developing my application with angularjs and ionic,
<div ng-app="myApp" ng-controller="myCtrl">
<p ng-bind-html="{{itemID}}"></p>
</div>
I would like to change this to angularjs like innerHTML,
<script>
var app = angular.module("myApp", ['ngSanitize']);
app.controller("myCtrl", function($scope) {
$scope.myText = "My name is:John Doe";
});
</script>
This is not because it needs to write itemid instead of $scope.myText.
How can I do it uniquely as above ?
I solved the problem. controller.js
html page