0

私はAngularについて深く理解していますが、何が間違っているのか理解できません。

ng-controller で囲まれたディレクティブがあります。

 KApp.directive("testdirective", function ($compile)
    {
        return {
            restrict: 'E',
            transclude: true,
            scope: {
                test:"="
            },
            template: "<div>\
                           <div style='width:120px'>\
                           {{test}}\
                            </div>\
                            <div  ng-transclude>\
                          </div>\
                       </div>"
              };
    });


  KApp.controller('testCtrl', function ($scope)
    {

         $scope.someText ="not important"

         $scope.pass = "1234";

         $scope.showPass = function()
          {
            //why the $scope.pass not updated via ng-model???
           alert($scope.pass)
         }


    });

HTML

<body ng-app="mainModule" ng-controller="appCtrl">
<div ng-controller="tsetCtrl">
 <testdirective  test="someText">
    <button style='width:120px' ng-click='showPass()'>
     Click me
            </button>
         <input ng-model='pass' style='width:120px'>
 </testdirective>
</div>

ng-model="pass"バインド先であり、$scope.pass = "1234";ユーザーが更新する必要があります。

私の問題:

ビューによって更新されない$scope.passのはなぜですか?

ここに完全なデモがあります - http://plnkr.co/edit/MsKm0LZtlQ45Yyq5Uw0d?p=preview
「クリックしてください」ボタンをクリックして結果を見てください。

4

1 に答える 1

1

showPass()ng-model入力の値が変更された後、別のスコープを参照します。詳細な説明については、この SO の回答を参照してください。

于 2014-11-20T11:15:09.817 に答える