angular1 開啟檔案 並另存為(檔案的讀取與寫入)
阿新 • • 發佈:2018-11-07
最近有個需求,在頁面上有個按鈕可以選取檔案然後在匯出到其它地方,
說明白點就是檔案的讀取與寫入,下面是例子(例子中用到了fileSave.js github地址:https://github.com/eligrey/FileSaver.js)
首先引入fileSave.js
import '../../../lib/file-saver/dist/FileSaver.min.js';
html:
<input type="file" id="fileUpload" value="選擇檔案" mce_style="display:none" onchange="angular.element(this).scope().fileChoose(this)" >
<button ng-click="chaunshu()" class="btn btn-default">轉移</button>
script:
$scope.fileChoose = (ele) => {
$scope.files = ele.files[0];//讀取檔案資訊
};
$scope.chaunshu = () => {
if($scope.files == '' || $scope.files == undefined ){
layer.alert('請先選擇檔案', {closeBtn: false, icon: 2}, index => {
layer.close(index);
});
}else {
let filename = $scope.files.name;
let type = $scope.files.type;
let blob = new Blob([$scope.files], {type: type}); //[$scope.files]要儲存的檔案 {type:儲存檔案型別}
saveAs(blob, filename);//儲存
}