Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

236
Views
this.$emit is not a function inside file reader onload

I know about lexical scope that this keyword is pointing to the window and not Vue

But how do I make it point to Vue?

What I am trying to do is get csv data and parse it, I'm using d3 to parse the data it's working fine, I am just unable to emit the event with the data because of the scope issue

    async loadcsv(element){
        let reader = new FileReader();
        let file = element[0].file

        reader.onload =  async function (e){
            const data = e.target.result;
            let csvParsed = await d3.csvParse(reader.result);
            let collection = []
            csvParsed.forEach(function (element) {
                collection.push({
                    id: Math.floor(Math.random() * 10000000),
                    country : element['Country'],
                    email : element['Email id'],
                    poi_serial : element['Serial'],
                    status: "New"
                })
            });
            // Not working, shows it's not defined
            // this.$emit('csvCollection', collection) 
        }
        reader.readAsText(file);
    },
about 4 years ago · Santiago Gelvez
2 answers
Answer question

0

You can store the vue instance in a variable before the async function you are using like let self = this. or you can use an arrow function instead of the function you are using. see this similar question VueJs this.method is not a function? How to call a method inside another method in Vuejs?

about 4 years ago · Santiago Gelvez Report

0

change the reader.onload line to the below to keep lexical scope for the this keyword

reader.onload =  async (e) => {
about 4 years ago · Santiago Gelvez Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!