如何从控制器函数切换视图?

我正在尝试使用AngularJS的ng-click特性来切换视图。我该如何使用下面的代码来做这件事呢?

index . html

 <div ng-controller="Cntrl">
<div ng-click="someFunction()">
click me
<div>
<div>

controller.js

  function Cntrl ($scope) {
$scope.someFunction = function(){
//code to change view?
}
}
274525 次浏览
为了在不同的视图之间切换,您可以直接更改窗口。位置(使用$ Location服务! index . html文件< / p >
<div ng-controller="Cntrl">
<div ng-click="changeView('edit')">
edit
</div>
<div ng-click="changeView('preview')">
preview
</div>
</div>

Controller.js

function Cntrl ($scope,$location) {
$scope.changeView = function(view){
$location.path(view); // path not hash
}
}

并配置路由器根据位置切换到不同的部分(如https://github.com/angular/angular-seed/blob/master/app/app.js所示)。这将具有历史记录和使用ng-view的好处。

或者,你可以使用ng-include和不同的部分,然后使用ng-switch,如下所示(https://github.com/ganarajpr/Angular-UI-Components/blob/master/index.html)

我有一个工作的例子。

这是我的医生的样子:

<html>
<head>
<link rel="stylesheet" href="css/main.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-resource.min.js"></script>
<script src="js/app.js"></script>
<script src="controllers/ctrls.js"></script>
</head>
<body ng-app="app">
<div id="contnr">
<ng-view></ng-view>
</div>
</body>
</html>

这是我的部分:

<div id="welcome" ng-controller="Index">
<b>Welcome! Please Login!</b>
<form ng-submit="auth()">
<input class="input login username" type="text" placeholder="username" /><br>
<input class="input login password" type="password" placeholder="password" /><br>
<input class="input login submit" type="submit" placeholder="login!" />
</form>
</div>

这是我的Ctrl看起来像什么:

app.controller('Index', function($scope, $routeParams, $location){
$scope.auth = function(){
$location.url('/map');
};
});

App是我的模块:

var app = angular.module('app', ['ngResource']).config(function($routeProvider)...

希望这对你有帮助!

提供的答案是绝对正确的,但我想为任何未来的访问者展开,他们可能想要更动态地做一点-

在视图中-

<div ng-repeat="person in persons">
<div ng-click="changeView(person)">
Go to edit
<div>
<div>

在控制器中

$scope.changeView = function(person){
var earl = '/editperson/' + person.id;
$location.path(earl);
}

与公认的答案相同的基本概念,只是添加了一些动态内容来改进它。如果接受的答案想要添加这个,我会删除我的答案。

在没有对默认路由(#/ViewName)环境进行完全修改的情况下,我能够对Cody的技巧进行轻微修改,并使其工作得很好。

控制器

.controller('GeneralCtrl', ['$route', '$routeParams', '$location',
function($route, $routeParams, $location) {
...
this.goToView = function(viewName){
$location.url('/' + viewName);
}
}]
);

视图

...
<li ng-click="general.goToView('Home')">HOME</li>
...

让我想到这个解决方案的原因是,当我试图将一个Kendo Mobile UI小部件集成到一个角环境中时,我失去了控制器的上下文,常规锚标记的行为也被劫持了。我从Kendo小部件内重新建立了我的上下文,需要使用一个方法来导航…这工作。

感谢之前的帖子!

之前所有回答这个问题的方法都建议更改url,这是不必要的,我认为读者应该知道另一种解决方案。我使用ui-router和$stateProvider将状态值与templateUrl相关联,templateUrl指向您的视图的html文件。然后,只需将$state注入到控制器中,并调用$state.go('state-value')来更新视图。

angular-route和angular-ui-router有什么区别?< / >

Firstly you have to create state in app.js as below


.state('login', {
url: '/',
templateUrl: 'views/login.html',
controller: 'LoginCtrl'
})


and use below code in controller


$location.path('login');

希望这对你有所帮助

这个小功能对我很有帮助:

    //goto view:
//useage -  $scope.gotoView("your/path/here", boolean_open_in_new_window)
$scope.gotoView = function (st_view, is_newWindow)
{


console.log('going to view: ' + '#/' + st_view, $window.location);
if (is_newWindow)
{
$window.open($window.location.origin + $window.location.pathname + '' + '#/' + st_view, '_blank');
}
else
{
$window.location.hash = '#/' + st_view;
}




};

你不需要完整的路径,只需要你要切换到的视图

有两种方法:

如果你正在使用ui-router或$stateProvider,这样做:

$state.go('stateName'); //remember to add $state service in the controller

如果你正在使用angular-router或$routeProvider,这样做:

$location.path('routeName'); //similarily include $location service in your controller