angular 에서 바 이 너 리 Excel 파일 다운로드

592 단어 웹 전단Angular
        $http({
            url:'',
            method: "POST",
            data: '', //this is your json data string
            responseType: 'arraybuffer'
        }).success(function (data, status, headers, config) {
            var blob = new Blob([data], {type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});
            var objectUrl = URL.createObjectURL(blob);
            window.open(objectUrl);
        }).error(function (data, status, headers, config) {
            //upload failed
        });

좋은 웹페이지 즐겨찾기