将一个普通数组映射为对象数组
this.fileList = this.attachmentList.map(item=>{ return {id:item.id,name:item.fileName,url:item.filePath} });
不能写成:
this.fileList = this.attachmentList.map(item=>{ id:item.id,name:item.fileName, url:item.filePath });
this.fileList = this.attachmentList.map(item=>{ return {id:item.id,name:item.fileName,url:item.filePath} });
不能写成:
this.fileList = this.attachmentList.map(item=>{ id:item.id,name:item.fileName, url:item.filePath });