KnockoutJS - splice() 方法



说明

KnockoutJS 可观察对象 splice() 方法采用 2 个参数,用于指定 startIndex 和 endIndex。它从 startIndex 到 endIndex 处删除项并作为数组返回这些项。

语法

arrayName.splice(start-index,end-index)

参数

接受 2 个参数,start-index 是开始索引,end-index 是结束索引。

示例

<!DOCTYPE html>
   <head>
      <title>KnockoutJS ObservableArray splice 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 splice() method.</p>
      <button data-bind = "click: spliceEmp">Splice Emp</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.spliceEmp = function() {
               alert("Splice is removing items from index 1 to 3(If exists).");
               this.empArray.splice(1,3);   // remove 2nd,3rd and 4th item, as array index 
                                            //starts with 0.
            }
         }

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

输出

让我们执行以下步骤,看看上述代码是如何工作的:

  • 将上述代码保存在 array-splice.htm 文件中。

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

  • 单击 Splice 雇员按钮,观察到从索引 1 到 3 的项被删除了。

knockoutjs_observables.htm
广告