Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript vue csv导入正在使用'';在导入csv文件时作为分隔符,即使'';已设置为分隔符。这是虫子吗?_Javascript_Vue.js_Csv Import - Fatal编程技术网

Javascript vue csv导入正在使用'';在导入csv文件时作为分隔符,即使'';已设置为分隔符。这是虫子吗?

Javascript vue csv导入正在使用'';在导入csv文件时作为分隔符,即使'';已设置为分隔符。这是虫子吗?,javascript,vue.js,csv-import,Javascript,Vue.js,Csv Import,我正在将两个csv文件导入vuejs webapp。 这两个文件都使用分号作为分隔符,因此我将分隔符选项设置为“;”在vue.config.js中。 两个文件中的一个正确,另一个不正确。第二个文件似乎是用一个简单的逗号作为分隔符导入的 我认为问题可能是由后一个文件中存储的数据引起的。一列包含路径(PostgreSQL数据类型)。这意味着,即使分号用作分隔符,文件中也有大量逗号 我不确定我是否遗漏了什么,因为我是vuejs javascript新手,或者这是vue csv导入包中的错误 这是我的v

我正在将两个csv文件导入vuejs webapp。 这两个文件都使用分号作为分隔符,因此我将分隔符选项设置为“;”在vue.config.js中。 两个文件中的一个正确,另一个不正确。第二个文件似乎是用一个简单的逗号作为分隔符导入的

我认为问题可能是由后一个文件中存储的数据引起的。一列包含路径(PostgreSQL数据类型)。这意味着,即使分号用作分隔符,文件中也有大量逗号

我不确定我是否遗漏了什么,因为我是vuejs javascript新手,或者这是vue csv导入包中的错误

这是我的vue.config.js文件:

module.exports = {
    pwa: {
    name: 'Hofladenautomaten',
    themeColor: '#f34112',
    appleMobileWebAppCapable: 'yes',
    appleMobileWebAppStatusBarStyle: '#f87224',
    msTileColor: '#1ba7ff'
},
  publicPath: './',
    configureWebpack: {
        module: {
    rules: [
      {
        test: /\.csv$/,
        loader: 'csv-loader',
        options: {
                    delimiter: ';',
                    quoteChar: '|',
                    encoding: "utf-8",
                    newline: "",
          dynamicTyping: true,
          header: true,
          skipEmptyLines: true
        }
      },
            {
       test: /\.svg$/,
       loader: 'vue-svg-loader',
      },
    ]
  },
}
};
我正在使用以下命令导入文件:

import automatdata from '!csv-loader!./files/automaten.csv';
10行正确导入的csv文件:

produktid;produktname;produkttyp;preis;hofid;menge;bioprodukt
1;Alpkäse mild;Milchprodukt;5.80;1;;False
2;Alpkäse würzig;Milchprodukt;6.60;1;;False
3;Büffelfeta;Milchprodukt;6.50;6;;True
4;Geisse-Mutschli;Milchprodukt;;7;;False
5;Alpkäsefondue;Milchprodukt;24;1;;False
6;Alpbutter;Milchprodukt;580;1;;False
7;Rindfleischsalami;Fleisch/Wurst;4.50;9;;True
8;Landjäger mit Kümmel;Fleisch/Wurst;4.50;9;;True
9;Sennenwürstli;Fleisch/Wurst;8.00;1;;False
未正确导入的文件的7行:

type;erfassungs_zeit;automat_position_point;automatid;strassenname;hausnummer;muenzen;kreditkarten;twint;nfc;frischemilch;frischesgemuese;bioprodukte;aufstelljahr;postleitzahl;autname;betreiber;zugangszeit;oevhaltstelle;trackedway;produkte
collectedPoints;02.11. 17:36:57;(8.5257269, 47.4230015);1;Schwandenholzstrasse;157;True;true;true;true;true;true;true;2015;8052;Automat Waidhof;Familie R.u.I. Götsch-Rutt;03:11;Zürich, Waidhof;[(47.4234044677369,  8.525618297728748),(47.4234044677369,  8.525618297728748),(47.4234624103895,  8.525617867761593),(47.42347517037716,  8.525618137939002),(47.42347691906005,  8.525602588247615),(47.4230920099614,  8.525737386223431),(47.42310268170944,  8.525688395765393),(47.42312256904057,  8.52568883974237),(47.42313383628564,  8.525695584391364),(47.42314360513022,  8.525704562545878),(47.4231503685592,  8.525713285622315),(47.423170309698904,  8.525711338967945),(47.42318005748284,  8.525704158123409),(47.423190515456696,  8.525711589099847),(47.423205192869,  8.525712646462782),(47.42321572155675,  8.525708484185914),(47.42323358200379,  8.525701793269617),(47.42324183338677,  8.525696424110967),(47.423259088173864,  8.525689555541637),(47.42327422905128,  8.525683072861902),(47.42327923257162,  8.52567113019338),(47.42329288497164,  8.525667697972496),(47.42330743656579,  8.525661684980424),(47.423323883648834,  8.525656804282725),(47.42333548961999,  8.52564748287931),(47.42334661447356,  8.525633755431283),(47.42335702047148,  8.525632463394999),(47.423358947064585,  8.525624290119069),(47.42336709040437,  8.525616126612737),(47.42337709495926,  8.525611053187165),(47.42338673368252,  8.525609639276743),(47.423397608287914,  8.52559585564619),(47.423411680023804,  8.525580288747129),(47.42343648588717,  8.525562771257068),(47.42345155736877,  8.525538285928537),(47.42346304876438,  8.5255261528477),(47.423477220597604,  8.525515037927617),(47.42349730906877,  8.52551043227036),(47.423511607786,  8.5255142268607),(47.42353128391814,  8.52550779746611),(47.42355107199381,  8.525508116561692),(47.42356071052487,  8.525516402585133),(47.42357797951277,  8.525509639037228),(47.423598802910185,  8.525510724998247),(47.4236094319248,  8.5255093951594),(47.42361611055077,  8.525502190518306),(47.423621707853954,  8.525503611236843),(47.4236265235073,  8.525473473488779),(47.4236346762928,  8.525455242043622),(47.42363756835001,  8.525433292846822),(47.42364533294724,  8.525414712985004),(47.42365081760482,  8.525392921626416),(47.42365657431236,  8.525377351238436),(47.42366017854253,  8.525359690091383),(47.423662939665334,  8.525333093716709),(47.423664260091904,  8.525303648894099),(47.42366856739073,  8.52528694461346),(47.42366819400413,  8.525271144382238),(47.4236688845481,  8.52524419202482),(47.42366548109898,  8.525227105291984),(47.42366634277828,  8.525203765689422),(47.423676540112034,  8.525191449731974),(47.42369486650242,  8.52517937369364),(47.42370821213824,  8.525155567945715),(47.423719320367525,  8.525142488278957),(47.42372192146275,  8.525138061285134),(47.4237311622794,  8.525121631573205),(47.42374345254685,  8.525095780144465),(47.423751448187204,  8.525079048882064),(47.4237713730954,  8.525064205037436),(47.42377765578469,  8.525048308595021),(47.42378810389046,  8.525030832729028),(47.423798705963556,  8.525022396788271),(47.42380600365208,  8.525008551460267),(47.4238187068112,  8.525004497727592),(47.42382755664702,  8.524991532162614),(47.42382767296226,  8.524973119060128),(47.42383585963737,  8.524952122942253),(47.423841258968864,  8.524935732710507),(47.423845992879954,  8.524925346020838),(47.423848019315045,  8.524903538415955),(47.42385252860262,  8.524882750890075),(47.42386010488898,  8.524860774051756),(47.42386669725065,  8.524845370959644),(47.42386829988543,  8.524821547042366),(47.42387492409205,  8.524802061144376),(47.42387985758531,  8.524787072090625),(47.42388478697446,  8.524774967968138),(47.423888371567955,  8.524775818916503),(47.42389348635271,  8.524753767059183),(47.42390060731139,  8.524732137122358),(47.42391334373207,  8.524713030273862),(47.423920916882274,  8.524692150802407),(47.42392813452717,  8.524677056248166),(47.42393351718156,  8.524658998838666),(47.423936974810715,  8.524643828163896),(47.42393291329125,  8.524624867850676),(47.423934781672955,  8.524613821073496),(47.423939187954254,  8.524603813592538),(47.423939874453126,  8.52352527264848),(47.423939874453126,  8.52352527264848),(47.423893815913615,  8.52357377975827),(47.42387728942408,  8.523603974984844),(47.423914653952686,  8.52357663522748),(47.42400856062507,  8.523435475546613),(47.424070403533094,  8.523300517380306),(47.423926042761835,  8.523258949132059),(47.42382794469166,  8.52300454864885),(47.423822355998944,  8.522776341842889),(47.42387184169574,  8.5227883440454)];60,61
collectedPoints;02.11. 16:56:06;(8.5286272, 47.4320406);2;Riedenholzstrasse;122;true;;;;true;;true;;8052;Reckenholz;Riedenholzhof;09:00;Zürich, Klschenrüti;[(47.43189235244978,  8.528654583943394),(47.43189235244978,  8.528654583943394),(47.431901477289784,  8.52865987240936),(47.431902860865726,  8.528660813805764),(47.43191656749771,  8.528643122359858),(47.43192641181022,  8.528578203951389),(47.431927875560454,  8.5284926122689),(47.43192149748231,  8.528470251226826),(47.43191442349084,  8.528435534394546),(47.43189995411162,  8.528428187873041),(47.43181820873976,  8.528437349295654),(47.43181820873976,  8.528437349295654),(47.43156198477724,  8.528513017271571),(47.4315926815417,  8.528527257608115),(47.431035956345326,  8.528663387058431),(47.43103812698972,  8.528685357852321),(47.431030059440744,  8.528704312443411),(47.431024818767604,  8.528736994458717),(47.430343991785044,  8.53581818697811),(47.430343991785044,  8.53581818697811),(47.43003546857705,  8.535942621770515),(47.42984327027698,  8.536026739659352),(47.42980243454091,  8.5361552419715),(47.42950155989789,  8.536754819063226),(47.42940698802675,  8.536752720154427),(47.42933448144465,  8.536726702999909),(47.42911849993582,  8.536501172102442),(47.42924111972981,  8.536839210730335),(47.42938638328565,  8.53677950013034),(47.42944300266287,  8.53673316246716),(47.42943547902302,  8.53657228504098),(47.42866768572194,  8.537195674708776),(47.42866768572194,  8.537195674708776),(47.428433658692654,  8.537200405707372),(47.42839646626239,  8.537194757316568),(47.42885553079867,  8.537236824035991),(47.42929491014003,  8.537163181377824),(47.42920553314833,  8.537251014239223),(47.42904184092884,  8.537286314775494),(47.428733830521956,  8.537149763905713),(47.42876738772645,  8.537262309948625),(47.428677989659484,  8.537219338022593)];33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59
collectedPoints;02.11. 16:05:31;(8.508105, 47.4026476);3;Am Hönggerberg;80;True;;;;true;;true;;8049;Milchautomat Familie Willi;Familie Willi;02:00;Zürich, Im Wingert;[(47.402282191532166,  8.507520804956057),(47.40225431648921,  8.49705875322487),(47.40224555253552,  8.493769469142533),(47.402347219873214,  8.506781310289632),(47.40214810023571,  8.507682070775997),(47.40248118058908,  8.507542040607659),(47.402530099736374,  8.507779347383252),(47.402668437428176,  8.50794277446159),(47.40263925784922,  8.508040148358383),(47.402652113339286,  8.5080522010173),(47.40270364552778,  8.508104951624805),(47.40270924165745,  8.508114061353098),(47.40269312694512,  8.508108832189137),(47.40269609321985,  8.508101428614518),(47.40269989507592,  8.508099346874943),(47.402438518594735,  8.507860896869573),(47.402426285149204,  8.507868279369758),(47.402413198351375,  8.507875572287873),(47.40239828424209,  8.5078802539468),(47.40238321893468,  8.507882394199083),(47.402369665257964,  8.50789854674672),(47.40235442924436,  8.507913757036226),(47.402343111112266,  8.507918573020623),(47.402188685839974,  8.508062098590457),(47.40218861072529,  8.508062168403294),(47.40208711143804,  8.508009565431218),(47.40206588578647,  8.507866636256887),(47.40193777184136,  8.508088015111653),(47.40193777184136,  8.508088015111653),(47.401467377934544,  8.508646303132343),(47.40135011920462,  8.508793893379034),(47.40128640433957,  8.508874246155987)];32
collectedPoints;;(8.5601196, 47.414132);4;;;;;;;;;;;;Alpomat Hagenholz;Abderhalden Naturbuur GmbH;;;;
collectedPoints;;(8.5063667, 47.4268054);5;;;;;;;;;;;;Automat Affoltern;;;;;
collectedPoints;;(8.496417, 47.3818818);6;;;;;;;;;;;;Alpomat Letzigrund;Abderhalden Naturbuur GmbH;;;;