4

次のコードで、Angularjs で todo アプリケーションを作成しようとしています。

function write_controller($scope){
  $scope.todos = [{text:'hey all',done:false}, 
                 {text:'hello',done:false}];
  $scope.addtodo = function(){
  $scope.todos.push({text:$scope.todopush,done:false});
    $scope.todopush = '';
  }
  $scope.delete = function(){
    var oldtodos = $scope.todos;
    $scope.todos = [];
    angular.forEach(oldtodos, function(x){
      if (!x.done){
        $scope.todos.push(x);}
    });
  };
}
<html ng-app>
    <head>
     <script src =  
     "https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js">   
      </script>
      </head>
      <body>
      <div class = "basic_class" ng-controller = "write_controller">
      <ul>
        <li ng-repeat = "todo in todos"><input type = "checkbox" ng-model  
         ="todo.done">{{todo.text}}</input></li>
      </ul>
      <input type = "text"
        placeholder = "please add data here"
        ng-model="todopush">
      </input>
      <input type = "button" ng-click ="addtodo()" value ="Click me!!"></input>
      <input type = "button" ng-click = "delete()" ng-model="remove" value =  
       "remove!"></input>
      </div>
</body>
</html>

次のコードでは、次の質問があります。削除操作はどのように機能していますか??

私の理解: 1) 既存の配列を新しい配列にプッシュする 2) 既存の配列をクリアする 3) 新しい配列を反復処理する 3) 完了した機能をチェックする??? ( !x.done と表示されている場合、それは true か false ですか???) どんな助けでも大歓迎です。

4

1 に答える 1

1

ステップを歩く

$scope.delete = function() {
    // store existing todos array in variable
    var oldtodos = $scope.todos;
    // create new empty array for todos
    $scope.todos = [];
    // loop over previously stored todos
    angular.forEach(oldtodos, function(x) {//x is element of the array - a single todo object
      // if x.done is not truthy
      if (!x.done){
       // push this item into `$scope.todos`
       $scope.todos.push(x);
    });
}

基本的に、done:false新しいバージョンにプッシュするだけで$scope.todos、効果的に削除されますdone:true

于 2016-10-09T03:53:26.497 に答える