角度为2或4的angularjs ng-init替代。
我在下面写了angularjs的示例代码,但是我想在角度2或4中使用相同的逻辑。
如果条件为真,则通过html调用方法。
sample.controller.js
$scope.showDiv = true;
$scope.callFunction = function() {
console.log("myFunction");
};
sample.html
<div ng-if="showDiv">
<div ng-init="callFunction()"></div>
</div>