Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクティブとサービスの間にいくつかの共通機能があります。2 つのアイテムの間でコードをコピーしたくないのです。サービスをディレクティブに挿入することは可能ですか?
はい。ディレクティブでこれを行うだけです:
.directive('directiveName', ['ServiceName', function(ServiceName) { return { link: function(...) { ServiceName.doSomething(); } } }]);