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.
私はUIルーターの初心者です。すべての状態にグローバル パラメータを渡す必要があります。UIルーターにグローバルパラメータを設定する方法はありますか?
私はこのようにそれを好むでしょう。延長する$stateParam
$stateParam
app.factory('ExtendedStateParam', function($http, $stateParam, $state){ $stateParam['global_param'] = $state.$current.global_param; return $stateParam; }