2
schangxiang@126.com
2024-08-16 b47c50a2a514def7374b32d7194b2c599cba5625
1
!function(e){e.module("ngTableToCsv.config",[]).config(["$compileProvider",function(e){e.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|data):/)}]).value("ngTableToCsv.config",{debug:!0}),e.module("ngTableToCsv.directives",[]),e.module("ngTableToCsv",["ngTableToCsv.config","ngTableToCsv.directives"])}(angular),function(e){"use strict";e.module("ngTableToCsv.directives").directive("exportCsv",["$parse",function(n){return{restrict:"A",scope:!1,link:function(t,i,r){var o="",a=r.separator?r.separator:",",s=r.exportCsvIgnore||".ng-table-filters",c={stringify:function(e){return'"'+e.replace(/^\s\s*/,"").replace(/\s*\s$/,"").replace(/"/g,'""')+'"'},generate:function(){o="";var n=i.find("tr");e.forEach(n,function(n,t){var i=e.element(n),r=i.find("th"),l="";i.is(s)||(0===r.length&&(r=i.find("td")),e.forEach(r,function(n,t){var i="";n=e.element(n),n.is(s)||(i=e.element(n).text()),l+=c.stringify(i)+a}),l=l.slice(0,l.length-1),o+=l+"\n")})},link:function(){return"data:text/csv;charset=UTF-8,"+encodeURIComponent(o)}};n(r.exportCsv).assign(t.$parent,c)}}}])}(angular);