typescript中的数组 默认只有push、pop这样的增删api。 如果想移除数组中间的某一项元素, 可以通过: let node: int; //要移除的对象 nodes: int[]; this.nodes = this.nodes.filter(item => item !== node);