ui-sref 一般使用在<a></a>中
<a ui-sref="message-list">消息中心</a>
$state.go('someState')一般使用在controller里面
.controller('firstCtrl',function($scope, $state) {
$state.go('login');
});
<a ui-sref="message-list">消息中心</a>
.controller('firstCtrl',function($scope, $state) {
$state.go('login');
});