PapaParse with Angular JS

后端 未结 4 591
我寻月下人不归
我寻月下人不归 2021-02-11 02:39

Liked the nice CSV parser & unparser of PapaParse. Can any one help me to get this combine with Angular JS.

I like to make PapaParse work in Angular Way. Trying for

相关标签:
4条回答
  • 2021-02-11 02:49

    I actually didn't do anything fancy to load it. Just add it to html file and to my lib folder. In my case: /lib/papaparse.min.js

    and to index.html. As usual script:

    <script src="lib/papaparse.min.js"></script>
    

    then I just used it in my Controller:

    Papa.parse(data, {
        complete: function(results) {
            console.log("Finished:", results.data);
        }
    });
    
    0 讨论(0)
  • 2021-02-11 02:57

    Just inject the script url in your index.html & then in your controller, access it as - var Papa = window.Papa;. That's it! You are ready for further actions!

    0 讨论(0)
  • 2021-02-11 02:58

    just use a front-end modularization tool like requirejs to load papaParser in the context and call the api in any of your controller or service.

    0 讨论(0)
  • 2021-02-11 03:08

    You can use value to provide self contained third party libraries.

    angular.module('your.app')
        .value('yourLib', yourLib);
    

    Then in your controller, or service, you would bring it in the normal way using DI

    angular.module('your.app')
        .controller('YourController', YourController);
    
    YourController.$inject = ['yourLib'];
    function YourController(yourLib) {
    
       //. . .  
    } 
    

    If the third party line is a constructor function, requires it be newed, you may want to create a factory or a provider that has a method that accepts the passes params to the constructor returns a new instance.

    Edit

    After looking at PapaParse, you would want to register it with the angular injector using value.

    0 讨论(0)
提交回复
热议问题