이 글은 모든 사람에게 도움이 되기를 바라며 주로 vue.js 배열 업데이트 예제를 공유합니다.
원본 배열 변경
push()
pop()
shift()
unshift()
splice()
sort()
reverse()
원래 배열을 변경하지 마세요
filter( )
contat()
slice()
예:
computed:{ filterBooks(){ return this.books.filter(function(book){ return book.name.match(/javascript/) }) }, sortBooks(){ return this.lists.sort(function (a,b) { return a.name.length<b.name.length }) } }
mounted(){ this.books.push({ //push数组方法,视图直接改变 name:'《css3实战》', author:'huiyh' }); this.books=this.books.concat([{ //concat数组方法,需更新原数组 name:'《html5实战》', author:'lala' }]) }
위 내용은 vue.js 배열 업데이트 예제 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!