赞
踩
splice(index,len,item)是vue中对数组进行操作的方法之一,可以用来删除,更新,和增加数组内容
参数:
index:数组下标
len:为1或0
item:更新或增加的内容
使用方法:
删除,当参数形式为splice(index,1)时表示删除下标为index的内容
更新,当参数形式为splice(index,1,item)时表示用新的值item更新替换掉下标为index的值
增加,当参数形式为splice(index,0,item)时表示在下标为index的位置增加一项值为item
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。