なぜ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でそれを見てください: