簡體   English   中英

嘗試使用 javascript 導出 CSV 時,在嚴格模式下不允許分配給只讀屬性出現錯誤

[英]Assignment to read-only properties is not allowed in strict mode got error when tried to export CSV using javascript

請參考代碼 -

$scope.JSONToCSVConvertor = function(ShowLabel) {
var arrData = typeof $scope.SampleJsonObj != 'object' ? JSON.parse($scope.SampleJsonObj) : $scope.SampleJsonObj;

var CSV = '';    

var ReportTitle = "sample";

//This condition will generate the Label/Header
if (ShowLabel) {

    var row = "";

    //This loop will extract the label from 1st index of on array
    for (var index in arrData[0]) {

        //Now convert each value to string and comma-seprated
        row += index + ',';
    }

    row = row.slice(0, -1);

    //append Label row with line break
    CSV += row + '\r\n';
}

//1st loop is to extract each row
for (var i = 0; i < arrData.length; i++) {
    var row = "";

    //2nd loop will extract each column and convert it in string comma-seprated
    for (var index in arrData[i]) {
        row += '"' + arrData[i][index] + '",';
    }

    row.slice(0, row.length - 1);

    //add a line break after each row
    CSV += row + '\r\n';
}

if (CSV == '') {        
    alert("Invalid data");
    return;
}   

//Generate a file name
var fileName = "Usersearch";  

//Initialize file format you want csv or xls
var uri = 'data:text/csv;charset=utf-8,' + escape(CSV);


//this trick will generate a temp <a /> tag
var link = document.createElement("a");    
link.href = uri;

//set the visibility hidden so it will not effect on your web-layout
link.style = "visibility:hidden";
link.download = fileName + ".csv";

//this part will append the anchor tag and remove it after automatic click
document.body.appendChild(link);
link.click();
document.body.removeChild(link);

}

說明 - 代碼在 chrome 瀏覽器中工作,但在 IE 中出現問題。 請指導我。我在“link.style = "visibility:hidden";”行遇到類似“TypeError: Assignment to read-only properties is not allowed in strict mode”之類的問題

我在 IE 瀏覽器中添加了一些額外的條件。 現在代碼在 IE 和 Chrome 中都可以使用。請參考代碼:

$scope.JSONToCSVConvertor = function (ShowLabel) { //如果 JSONData 不是對象,那么 JSON.parse 將解析對象中的 JSON 字符串 var arrData = typeof $scope.searchResult != 'object' ? JSON.parse($scope.searchResult) : $scope.searchResult;

  var CSV = '';

  var ReportTitle = "sample";

  if (ShowLabel) {

    var row = "";

    for (var index in arrData[0]) {

      //Now convert each value to string and comma-seprated
      row += index + ',';
    }

    row = row.slice(0, -1);

    CSV += row + '\r\n';
  }

  //1st loop is to extract each row
  for (var i = 0; i < arrData.length; i++) {
    var row = "";

    //2nd loop will extract each column and convert it in string comma-seprated
    for (var index in arrData[i]) {
      row += '"' + arrData[i][index] + '",';
    }

    row.slice(0, row.length - 1);

    //add a line break after each row
    CSV += row + '\r\n';
  }

  if (CSV == '') {
    alert("Invalid data");
    return;
  }

  //Generate a file name
  var fileName = "Usersearch";

  if(msieversion()){
    var IEwindow = window.open();
    IEwindow.document.write(CSV);
    IEwindow.document.close();
    IEwindow.document.execCommand('SaveAs', true, fileName + ".csv");
    IEwindow.close();
} else {
    var element = angular.element('<a/>');
    element.attr({
      href: 'data:attachment/csv;charset=utf-8,' + encodeURI(CSV),
      target: '_blank',
      download: 'Usersearch.csv'
    })[0].click();
} 

};

function msieversion() {
  var ua = window.navigator.userAgent; 
  var msie = ua.indexOf("MSIE "); 
  if (msie != -1 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) // If IE
  {
    return true;
  }

  return false; 
};

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM