2016-05-18 70 views

回答

0

你可以使用非URL參數,如下所述:https://github.com/angular-ui/ui-router/wiki/url-routing#using-parameters-without-specifying-them-in-state-urls

國家配置:

.state('contacts', { 
    url: "/contacts", 
    params: { 
     param1: null 
    } 
    templateUrl: 'contacts.html' 
}) 

UI-SREF:

<a ui-sref="contacts({param1: value1})">View Contacts</a> 

$ state.go:

$state.go('contacts', {param1: value1}) 

如果它是一個url參數,則可以通過相同的方式通過$stateParams訪問該參數。

相關問題