Roteador de interface do usuário angular $ urlRouterProvider. Quando não estiver funcionando quando clico em <a ui-sref=/
eu tenho.when('/center', '/center/question')
no meu aplicativo da web angular.
Quando digito'/center'
no meu navegador ele será redirecionado para'/center/question'
como eu esperava, mas quando eu clico no<a ui-sref="center" href="#/center"></a>
, ele não será redirecionado e permanecerá no URL'/center'
.
Não há erro no meu console e não sei por quê.
Eu vejo um problema semelhante aquiRoteador de interface do usuário angular $ urlRouterProvider. Quando não estiver funcionandonão mais.Eu tento a resposta, mas ainda não funciona para mim.
Aqui está o meu código de coffeescript:
whenConfig = ['$urlRouterProvider', ($urlRouterProvider) ->
# default url config
$urlRouterProvider
.otherwise '/center'
.when '/center', '/center/question'
]
stateConfig = ['$stateProvider', ($stateProvider) ->
# nested url config
capitalize = (s)->
s[0].toUpperCase() + s[1..]
mainConfig = ({
name: name
url: "/#{name}"
templateUrl: "templates/#{name}.html"
controller: "#{capitalize name}Ctrl"
} for name in ['center', 'keywordList', 'keywordConfig', 'log', 'stat'])
centerConfig = ({
name: "center.#{name}"
url: "/#{name}?page"
templateUrl: "templates/center/#{name}.html"
controller: "Center#{capitalize name}Ctrl"
resolve:
thead: (CenterService) ->
CenterService.getThead @self.name
data: (CenterService, $stateParams) ->
CenterService.fetchItems @self.name, $stateParams.page
} for name in ['question', 'answer', 'comment', 'article'])
for singleConfig in mainConfig
$stateProvider.state singleConfig
for childConfig in centerConfig
$stateProvider.state childConfig
]
app.config whenConfig
app.config stateConfig