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

当前回答

为了在不同的视图之间切换,您可以直接更改窗口。位置(使用$ Location服务! index . html文件

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

其他回答

有两种方法:

如果你正在使用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
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;
        }


    };

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

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

在视图中-

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

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

我有一个工作的例子。

这是我的医生的样子:

<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)...

希望这对你有帮助!