1

私のプランカーのリンクを参照してください: http://plnkr.co/edit/0vOjw0?p=preview

index.html

    <!DOCTYPE html>
<html ng-app="app">

  <head>
    <link rel="stylesheet" href="style.css">

    <script src="angular.min.js?version=1.4.2"></script>
    <script src="ui-bootstrap.js"></script>
    <script src="script.js"></script>
  </head>

  <body>




  <div class="col-lg-2" style="margin-right: 7px;float: left;">
      <button ng-controller="registrationCtrl" type="button" class="btn btn-primary btn-responsive" ng-click="openRegistration()"> Registration</button>
  </div>




  </body>

</html>

registration.html

<div class="modal-dialog" id="registration.html">


        <div class="modal-body">

            <form name="form" class="css-form" novalidate>



                <label for="pw1">Password:</label>
                <input type="password" id="pw1" name="pw1" ng-model="user.pw1" ng-required="" />
                <div>{{user.pw1}}</div>


            </form>

        <div class="modal-footer">

            <button class="btn btn-warning" ng-click="cancel()">Cancel</button>
        </div>
    </div>
</div>

script.js

angular.module('app',['ui.bootstrap']).controller('registrationCtrl', ['$scope','$modal',function ($scope, $modal)
    {

        $scope.openRegistration = function ()
        {
            //console.log("inside openLogin");
            var modalInstance =$modal.open(
                {
                    templateUrl: 'registration.html',
                    controller: 'registrationPopupController',
                    backdrop: 'static',
                    keyboard: false,
                    size: 'sm'
                });
            //console.log("done open")
        }
    }]).controller('registrationPopupController', ['$location','$scope','$modalInstance',function ($location,$scope,$modalInstance,LoginService)
    {

        $scope.user={
            pwd1:''
        };
        $scope.$watch('user.pwd1',function(newV,oldV){
          if(newV!=oldV){
          alert(newV)
            console.log(newV,oldV);
          }

        },true);


        $scope.cancel = function ()
        {
            $modalInstance.dismiss('cancel');
            location.href='#/';
        };

    }]);

私が直面している問題は、パスワード テキスト ボックスに書き込むと、$watch がモーダル インスタンス コントローラーで呼び出されないことです。しかし、同じ単純なコントローラーに書き込むと機能します。助けてください!!

4

1 に答える 1

1

あなたのng-model値のタイプミスuser.pwd1です。user.pw1

マークアップ

<input type="password" id="pwd1" name="pw1" ng-model="user.pw1" ng-required="" />

働くプランカー

于 2015-07-25T07:32:10.043 に答える