UI sref uygulayan bir bağlantı yerine ng-click kullanarak route.state öğesini nasıl değiştirebilirim?AngularJS ui yönlendiriciyi kullanarak ng tıklama ile yolu değiştir
<button ng-click="selectDir(file.fullPath)">set</button>
$scope.selectDir = function(location) {
options.storageLocation = location;
$route.current = 'recorder.options';
}
ile Ama çalışmıyor:
Bu denedim. Herhangi bir fikir?
ui-sref bu yanıta bakın: örneğin İşte
$state.go('recorder.options')
belgelerinde belirli işlevine bağlantı var http://stackoverflow.com/a/21105057/2539811 –