angular的文件上傳

angular如何上傳文件與文件夾,經過:
input標籤,使它的類型爲file
例:這是上傳文件的
 <input type="file" name="" class="file-one" title="點擊選擇文件" id="newUpload" (change)="bindChang( $event)" />
上傳文件夾的時候須要加一個屬性 webkitdirectory

例:web

<input type="file" name="" id="" class="files-other-upload" title="點擊選擇文件" (change)="bindChang( $event)" webkitdirectory>
上傳的文件能夠經過當input觸發change事件的時候給它傳一個$event,在ts文件接收
例:
bindChang(e){
    console.log(e)
  }

 上傳的文件能夠在e.target.files中接收到你上傳的文件,而後就能夠將你所要儲存的東西存放起來了spa

相關文章
相關標籤/搜索