如:const num1=[1,2,3],const num2=[55,5,5],都要加在一个空数组中 const to=[]
1.遍历:
for(let n of num1){
to.push(n)
} 然后第二个在遍历
2.利用push函数,可变参数 ...三个点可以解析数组
to.push(...num1)
如:const num1=[1,2,3],const num2=[55,5,5],都要加在一个空数组中 const to=[]
for(let n of num1){
to.push(n)
} 然后第二个在遍历
to.push(...num1)
本文标题:Vue数组互传
本文链接:https://www.haomeiwen.com/subject/ybyvwctx.html
网友评论