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; }