remove(function(item) { condition }) 方法



说明

Knockout.js Observable remove(function(item) { return condition }) 方法删除满足条件的项目,并以数组形式返回它们。

语法

arrayName.remove(function(item) { return condition })

参数

此方法接受一个函数形式的参数,该函数包含条件。数组中满足所述条件的项目将被删除。

示例

<!DOCTYPE html>
   <head>
      <title>KnockoutJS ObservableArray function based remove method</title>
      <script src = "https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.js"
         type = "text/javascript"></script>
   </head>

   <body>
      <p>Example to demonstrate function based remove() method.</p>
      <button data-bind = "click: removeoncondEmp">Remove on condition</button>
      <p>Array of employees: <span data-bind = "text: empArray()" ></span></p>

      <script>
         function EmployeeModel() {
            this.empName = ko.observable("");
            this.chosenItem = ko.observableArray("");
            this.empArray = ko.observableArray(['Scott','James','Jordan','Lee',
               'RoseMary','Kathie']);

            this.removeoncondEmp = function() {
               alert("This function is removing items whos value is 'James'.");
               this.empArray.remove(function (empName) { return empName === 'James' });  
                  //remove where empName is James
            }
         }

         var em = new EmployeeModel();
         ko.applyBindings(em);
      </script>
      
   </body>
</html>

输出

让我们执行以下步骤,了解上面的代码如何工作 −

  • 将上面的代码保存在 array-remove-fun.htm 文件中。

  • 在浏览器中打开此 HTML 文件。

  • 单击条件按钮上的删除。

knockoutjs_observables.htm
广告