尝试删除我添加到窗体中的控件
我试过this.*FormArray*.splice
但它不编译。这么说FormArray has no method splice
。然后我尝试了removeAt()
,但当我运行代码时,错误显示,removeAt is not a method
。一次编译失败,下一次运行失败。
我要从控件数组中删除控件。
最佳答案
removeAt()
是formarray命名空间上的一个方法,但不是es5-7方法。(<FormArray>items).removeAt(idx)
强制数组成为打开方法的对象。