0

Angular の基礎を学び始めたところです。楽しみのために、年俸コンバーターを作成しようとしています。ユーザーが年間モデルを変更すると、毎月の ng-model の更新に問題があります。フィールドは入力タグです。ここにコードがあります

    <!doctype html>
<html ng-app="salaryApp">
    <head>
        <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
    </head>
    <body>
        <div class="container" ng-controller="converter">
            <h1>Salary converter</h1>
            <div class="form-group">
                <label>Annual Salary</label>
                <input type="number" class="form-control" placeholder="0" ng-model="yearly" ng-change="reCalculate()" >
                <br>
                <label>Monthly Salary</label>
                <input type="number" class="form-control" placeholder="0" ng-model="monthly" disabled>
            </div>

        </div>
        <!--<div ng-controller="converter">
            Write some text in textbox:
            <input type="text">

            <h1>Hello {{ yearly }}</h1>
            <h1>Hello {{ monthly }}</h1>
        </div>-->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
        <!--<script src="salaryConverter.js"></script>-->
        <script type="text/javascript">
            var app = angular.module('salaryApp', []);



app.controller('converter', function($scope) {
  $scope.yearly = 80000;
  console.log("log1");
  $scope.monthly = $scope.yearly / 12;
  console.log("log2");

    function reCalculate() {
        console.log("function was run");
        return $scope.yearly /12.00;

  }

});
</script>

    </body>
</html>

ここにplnkrがあります http://plnkr.co/edit/26y0JRR7iVcrLOBlm7D2?p=preview

4

4 に答える 4

1
app.controller('converter', function($scope) {
  $scope.yearly = 80000;
  console.log("log1");
  $scope.monthly = $scope.yearly / 12;
  console.log("log2");

    $scope.reCalculate = function () {
        console.log("function was run");
        $scope.monthly = $scope.yearly / 12;

  }

});

これがあなたのプランカーの働きです

于 2015-06-04T11:31:03.377 に答える
1

プロパティとして使用する必要がありscopeます。ここ :

function reCalculate() {
        console.log("function was run");
        return $scope.yearly /12.00;

  }

する必要があります

  $scope.reCalculate = function () {
        console.log("function was run");
        $scope.monthly=$scope.yearly /12.00;//Don't return, you neet to assign

  }
于 2015-06-04T11:17:45.823 に答える
1

$scopeビューから呼び出されるように関数を定義しmonthly、戻る代わりに値を割り当てます。

$scope.reCalculate = function () {
    console.log("function was run");
    $scope.monthly = $scope.yearly / 12.00;
}

デモ

于 2015-06-04T11:18:04.077 に答える
1

スコープに reCalculate メソッドを追加する必要があります。

app.controller('converter', function($scope) {
  $scope.yearly = 80000;
  $scope.reCalculate = reCalculate; <--- THIS LINE
  console.log("log1");
  $scope.monthly = $scope.yearly / 12;
  console.log("log2");

    function reCalculate() {
        console.log("function was run");
        return $scope.yearly /12.00;

  }

});

直接追加することもできます:

$scope.reCalculate = function()...

ただし、コントローラーの作成方法については、いくつかのスタイル ガイドに従うことをお勧めします: https://github.com/johnpapa/angular-styleguide

于 2015-06-04T11:18:58.930 に答える