Skip to content
Snippets Groups Projects
Commit a8480afc authored by robinwilliam.hundt's avatar robinwilliam.hundt
Browse files

Fixed trailing slash bug in export url

parent e36d58ab
No related branches found
No related tags found
1 merge request!86Fixed trailing slash bug in export url
Pipeline #
......@@ -62,15 +62,19 @@
},
methods: {
download () {
const url = process.env.NODE_ENV === 'production'
? `https://${window.location.host}${window.location.pathname}/api/export/csv/`
: 'http://localhost:8000/api/export/csv/'
let url = ''
if (process.env.NODE_ENV === 'production') {
const baseUrl = `https://${window.location.host}${window.location.pathname}`.replace(/\/+$/, '')
url = `${baseUrl}/api/export/csv`
} else {
url = 'http://localhost:8000/api/export/csv/'
}
ax.get(url, {responseType: 'blob'}).then(response => {
console.log(response)
let blob = new Blob([response.data], { type: 'text/csv' })
let url = window.URL.createObjectURL(blob)
window.open(url) // Mostly the same, I was just experimenting with different approaches, tried link.click, iframe and other solutions
window.open(url)
})
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment