AngularJS:如何从控制器功能切换视图?


237

我正在尝试使用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?
        }
    }

Answers:


314

为了在不同的视图之间切换,您可以直接在index.html文件中更改window.location(使用$ location服务!)。

<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


我收到一个错误,说哈希不是$ location的功能。
The_Brink 2012年

我不认为哈希是$ location对象的一部分,但是有一个$$ hash变量,是这样,如果是这样,它将不起作用。
The_Brink 2012年

好的,我知道了怎么做。$ location.path(view); (docs.angularjs.org/guide/dev_guide.services.$location
The_Brink

@The_Brink谢谢您的编辑。我不知道为什么它被拒绝了。我进行了更改以反映我要说的话。
ganaraj 2012年

2
实际上,最好的办法就是建立一个普通的链接。<a href="https://stackoverflow.com/edit">Edit</a> Angular将确保单击不会创建页面重新加载。可以修改此行为,以便在需要时触发重新加载。
安东尼·马丁

38

提供的答案是绝对正确的,但我想扩展到将来可能希望更动态地进行此操作的任何访客-

在视图中-

<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);
}

与已接受答案的基本概念相同,只是在其中添加了一些动态内容以进行改进。如果接受的答案要添加,我将删除我的答案。


8
总的来说,但仅供参考,url实际上是完整的网址,包括协议(http://)和所有内容。正如$location.path()您的变量所暗示的那样,最好将其描述为path
Zach Lysobey 2013年

但是它需要一个$ rootScope。$ digest();。或$ scope。$ apply(); 为了使它移动没有延迟。
拉兹

23

我有一个工作的例子。

这是我的文档的外观:

<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');
    };
});

应用是我的模块:

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

希望这会有所帮助!



5

有两种方法:

如果您使用的是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

让我不寒而栗的是使用路由名称而不是状态名称...即它应该是“ main”而不是“ / main”
Ben Schmidt

3

在没有完全修改默认路由(#/ 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小部件中重新建立了上下文,并且需要使用一种方法来导航...。

感谢以前的帖子!


2
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'); 

希望这个能对您有所帮助


2

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

    //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;
        }


    };

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.