質問

Is it possible for 2 directives to use the same linking function? They have different templates but are otherwise the same. They don't require each other so I don't want to use transcluded / require. Any ideas?

役に立ちましたか?

解決

Create a factory/service which implements your logic and inject it in both directives. Call it in both link functions. Done.

他のヒント

you really don't want to do this as directives create their own scope once isolated. also they have their own element, attrs values to pass on.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top