0
ディレクティブでは、customer.name
でプレフィックスとして$ scopeを追加しないのはなぜですか?私は$scope.customer.name
に変更、それは動作しませんか?どうして? $ scopeを持っているとしますか?あなたはtemplate
に割り当てるものは何でもリンク(https://plnkr.co/edit/e4N2u1iuXbp7IESxNd1T?p=preview)
angular.module('docsSimpleDirective', [])
.controller('Controller', ['$scope', function($scope) {
$scope.customer = {
name: 'Naomi',
address: '1600 Amphitheatre'
};
}])
.directive('myCustomer', function() {
return {
template: 'Name: {{customer.name}} Address: {{customer.address}}'
};
});
私は持っています。あなたはそれについて私に参照文書を送ることができますか?ありがとう – AngularJS
@AngularJSテンプレートの意味は、あなたがコードを書くためにどの言語を選んでも、ウェブ全体で一貫しています。私はあなたがテンプレートが何であるかを読んでおくことをお勧めします。しかし、[ここ](https://www.3pillarglobal.com/insights/angularjs-understanding-custom-directive)はテンプレートの意味を明確な言葉で表しています。 –