問題タブ [angular-router-guards]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angular - Angular - 異なるモジュール間でガードを提供する
基本的に、現時点では次の Angular モジュールがあります。
landing
admin
core
shared
私が望むのは、モジュールAuthenticationGuard
内で呼び出される新しいガードを登録し、shared
それをさまざまなモジュールに提供することです。
現時点では、(ブートストラップするものである)内にガードを登録した場合にのみ機能し、またはlanding-module
に登録した場合は機能しません。admin.module
shared.module
これを行うと、次のようなエラーが表示されます。
の登録は、対応するモジュールの配列をguard
介して行われます。providers
私の目標は、すべてのモジュールで使用できるようにすることです。
モジュールcore
内からサービスを注入しても問題はありませんでした。admin
guards
services
現在、関連するファイルの一部は次のようになっています (簡潔にするために短縮されています)。