将csv文件内容从角度js传递到节点js,并在节点js中解析以插入mongo db

时间:2016-08-08 09:53:19

标签: javascript angularjs node.js mongodb csv

我有这个ReadCSV.js,我从angular js检索csv文件内容

app.get('/index.html', function(req, res) {
   res.sendFile(__dirname + '/index.html');
});

app.post('/add_event', function(req, res, next) {
    console.log("Node JS File1 :" +req);
    var finalData = req.body.test;//value is undefined
    console.log("Node JS File : " + finalData);//value is undefined

的index.html

  var myapp = angular.module('myapp', []);

 myapp.controller('MainCtrl', function ($scope,$http) {
$scope.showContent = function($fileContent){
    $scope.content = $fileContent;
var test=       $fileContent;
alert(test);
};  

$scope.submit = function(test){
//  
 $http.post('/add_event', $fileContent)
        .success(function(){
            console.log( "here" +$fileContent);
    });
}


<body ng-controller="MainCtrl">
<form ng-submit="submit()">
<div class="test">
<div class="panel-heading">
    <h3 class="panel-header">Upload Events</h3>
</div>
  <input class="btn btn-primary" type="file" on-read-     
  file="showContent($fileContent)"/></br>
  <button class="btn btn-primary btn-block" ng-click="processData(content)"   
  type="submit">
    Upload File
  </button>
  </div>
 </form>
  <div class="test2">
   {{content}}
   </div>

我正在获得未定义的价值。  如何将csv内容从角度js传递给节点js并解析它以便我可以插入mongodb。

1 个答案:

答案 0 :(得分:0)

请尝试以下代码,请注意我们正在使用此&gt; $ scope,Angular文档建议这样做。

我过去一直在使用json文件,所以我不一定知道这是否适用于csv文件。

MyApp.query(); 
    angular.
      module('myApp').
        controller: ['MyApp',
         function MyAppController(MyApp) {
            this.myApp = MyApp.query();
          }
        ]
      });

从csv / json文件中检索数据后,您应该在li中使用ngRepeat来显示要在html正文部分中显示的数据

    <li ng-repeat="data in $ctrl.myApp"
    <p>{{myApp.data}}</p>
   </li>

我希望这会有所帮助,祝你好运。