如何使用换行符将字符串导出到文本文件? AngularJS

时间:2019-02-21 08:04:03

标签: javascript angularjs line-breaks notepad

当您导入这样的文本文件时,我具有功能 enter image description here

日期将被格式化为此 enter image description here 它将自动导出包含新格式日期的记事本

但是问题是换行符不起作用 新导出的记事本是这样的 enter image description here

我的字符串代码是

   var fileText = $scope.list[0]+"\n"
      +$scope.list[1]+"\n"
      +$scope.list[2]+"\n"
      +$scope.list[3]+"\n"
      +$scope.list[4]+"\n"
      +$scope.list[5]+"\n"
      +$scope.list[6]+"\n"
      +$scope.list[7]+"\n"
      +$scope.list[8]+"\n"
      +$scope.list[9]+"\n"
      +$scope.list[10]+"\n";

还有其他插入换行符的方法吗?

1 个答案:

答案 0 :(得分:1)

尝试

'\r\n'

代替

'\n'

有关说明,请参见here