为什么replace=true
还是replace=false
没有在下面的代码产生任何影响?
当replace = false时为什么不显示“某些现有内容”?
或者更谦虚地讲,您能否解释replace=true/false
指令中的功能以及如何使用它?
例
JS /角度:
<script>
angular.module('scopes', [])
.controller('Ctrl', function($scope) {
$scope.title = "hello";
})
.directive('myDir', function() {
return {
restrict: 'E',
replace: true,
template: '<div>{{title}}</div>'
};
});
</script>
HTML:
<div ng-controller="Ctrl">
<my-dir><h3>some existing content</h3></my-dir>
</div>
在此处查看Plunker: