Last active
March 7, 2018 17:39
-
-
Save 11joselu/2096717e444849b597a5a2e3f2080eaf to your computer and use it in GitHub Desktop.
Donwload File - Vue.js 2.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function getFile(response) { | |
var result = document.createElement('a'); | |
var contentDisposition = response.headers.get('Content-Disposition') || ''; | |
var filename = contentDisposition.split('filename=')[1]; | |
filename = filename.replace(/"/g,"") | |
return response.blob() | |
.then(function(data) { | |
result.href = window.URL.createObjectURL(data); | |
result.target = '_self'; | |
result.download = filename; | |
return result; | |
}) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as fileUtil from '../fileUtils'; | |
this.$http.post('/generate', data) | |
.then(fileUtil.getZIPData) | |
.then((link) => { | |
link.click(); | |
}) | |
.catch((err) => { | |
console.log(err) | |
}) |
@Pokom still use the same code, with package lock version into vue-resource :(
@fgcui1204 I don't knwo if you still having this issue, but maybe this can help you:
https://stackoverflow.com/questions/27120757/failed-to-execute-createobjecturl-on-url
See: https://developer.mozilla.org/es/docs/Web/API/URL/createObjectURL
@11joselu I do not understand what needs to be the result from your api call? The file path?
And why do you use getZIPData when getZIPData is not mentioned in fileUtils.js?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello, @11joselu I use this code in my project, but it doesn't work.
there is an error:
does anyone know the reason? need you guys help. thanks