source

AngularJS : 컨트롤러 기능에서 뷰를 전환하려면 어떻게 해야 합니까?

factcode 2022. 12. 25. 09:41
반응형

AngularJS : 컨트롤러 기능에서 뷰를 전환하려면 어떻게 해야 합니까?

Angular의 ng클릭 기능을 사용하려고 합니다.뷰를 전환하려면 JS를 선택합니다.아래 코드로는 어떻게 하면 좋을까요?

index.displaces를 표시합니다.

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

controller.controller.controllers

  function Cntrl ($scope) {
        $scope.someFunction = function(){
            //code to change view?
        }
    }

다른 뷰 간에 전환하려면 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-switch를 사용한 후 여기에 나타나듯이 ng-switch를 사용합니다(https://github.com/ganarajpr/Angular-UI-Components/blob/master/index.html).

제공된 답변은 전적으로 맞지만, 저는 좀 더 역동적으로 하고 싶은 미래의 방문객들을 위해 확대하기를 원했습니다.

뷰에서 -

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

이것이 도움이 되기를 바랍니다!

이 질문에 대한 이전의 모든 답변에 사용된 방법은 필요하지 않은 URL을 변경하는 것을 제안하고 있으며, 독자들은 다른 해결책을 알고 있어야 한다고 생각합니다.ui-router와 $stateProvider를 사용하여 상태 값을 뷰용 html 파일을 가리키는 templateUrl과 연관짓습니다.컨트롤러에 $state를 삽입하고 $state.go('state-value')를 호출하여 뷰를 갱신하면 됩니다.

앵귤러 루트와 앵귤러 라우터의 차이점은 무엇입니까?

여기에는 다음 두 가지 방법이 있습니다.

ui-router를 사용하는 경우 또는$stateProvider, 다음과 같이 합니다.

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

각선 또는 각선 또는$routeProvider, 다음과 같이 합니다.

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

디폴트 라우팅(#/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 위젯을 각진 환경에 통합하려고 할 때 컨트롤러의 컨텍스트가 없어지고 일반 앵커 태그의 동작도 납치되었습니다.검도 위젯에서 콘텍스트를 재정립하여 탐색 방법을 사용해야 했습니다.이게 먹혔어요

이전 투고 감사합니다!

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


    };

전체 경로는 필요 없습니다. 전환하려는 보기만 필요합니다.

언급URL : https://stackoverflow.com/questions/11003916/angularjs-how-do-i-switch-views-from-a-controller-function

반응형