Download BLOB content using specified charset

后端 未结 4 2042
谎友^
谎友^ 2020-12-13 18:00

Is possible to change the Blob charset really? I\'m trying it for hours but it doesn\'t workds. See this.

jQuery(\"#download\").click(function() {
    var cs         


        
相关标签:
4条回答
  • 2020-12-13 18:48

    If you have some symbols in the csv and the accepted solution is not solving the problem:

    blob = new Blob(["\ufeff", csv_content]);
    // for csv_content you can try like below.
    function b64DecodeUnicode(str: any) {        
            return decodeURIComponent(atob(str).split('').map((c: any) => {
                return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
            }).join(''));
        }
    
    0 讨论(0)
  • 2020-12-13 18:56

    In my case I was using Angular JS to receive an encoded CSV file from the server in response to an HTTP POST. The problem was that CSVs returned from XMLHttpRequests are represented as Unicode (I want to say UTF-8, but according to this it is UTF-16) strings, not pre-encoded binary data. It looks like this is true in your example too, it is reading the CSV from a DOM element? In this case it ends up being represented as Unicode in memory, so it doesn't matter what value you set the encoding metadata to, the data is still Unicode.

    My Angular code was doing something like this:

    $http.post('/url', postData, {}).then(handleResponse);
    

    Inside handleResponse, the data was already represented in Unicode. According to Angular's $http service, not providing the responseType property on the config object causes it to default to string. Which according to Mozilla ends up represented as a DOMString in UTF-16, whereas we actually want it to be a Blob. Setting the responseType to blob on the config object successfully prevented the content from getting decoded. Without this, the response data was being inadvertently decoded before being placed into the Blob.

    $http.post('/url', postData, {responseType: 'blob'}).then(handleResponse);
    

    I then used saveAs() to get the browser to provide the file contents to the user.

    function handleResponse(response) {
        let headers = response.headers();
        let blob = new Blob([response.data], {type: headers['content-type']});
        saveAs(blob, headers['x-filename']);
    }
    

    I got the idea to set responseType from https://stackoverflow.com/a/16791296/1225617

    0 讨论(0)
  • 2020-12-13 18:58

    I found the solution before to post.

    The change of charset has not been resolved, in fact. However, I sent the UTF-8 header for the download process and Excel was able to understand the file format correctly. Thanks to this response of Erik Töyrä.

    blob = new Blob(["\ufeff", csv_content]);
    
    0 讨论(0)
  • 2020-12-13 19:00
      const blob = new Blob([csvData], { type: 'text/csv;charset=utf-8;' });
        if (navigator.msSaveBlob) { // IE 10+
          navigator.msSaveBlob(blob, filename);
        } else {
          const link = document.createElement('a');
          if (link.download !== undefined) {
            // Browsers that support HTML5 download attribute
            const url = URL.createObjectURL(blob);
            link.setAttribute('href', url);
            link.setAttribute('download', filename);
            link.style.visibility = 'hidden';
            document.body.appendChild(link);
            link.click();
            document.body.removeChild(link);
          }
        }
    

    this worked for csv export with excel format in vuejs.

    0 讨论(0)
提交回复
热议问题