이유는 무엇입니까 replace=true
또는 replace=false
아래의 코드에 영향을주지?
replace = false 일 때 "일부 기존 컨텐츠"가 표시되지 않는 이유는 무엇입니까?
아니면 좀 더 겸손하게 말하면 replace=true/false
지시문 의 기능과 사용 방법을 친절하게 설명해 주 시겠습니까?
예
JS / Angular :
<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에서 확인하십시오.