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

174
Views
axios.get() always returing a promise

This is my code and I have been trying to understand why data is always promise pending.

const axios = require('axios');
const { resolve,reject } = require('bluebird');


async function getData() {   
    const test = await axios.get(`http://localhost:3000/admin/dashboarddata/tabledata`).then((response)=>{
        return response
    }).catch();
    // console.log(test.data)
    var val = test
    return test;
  }
const data =  getData();
  
console.log(data)
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You might be able to get the data by awaiting the function to resolve. Give the following a shot:

const data = await getData()

instead of: const data = getData()

Hope it helps!

about 4 years ago · Juan Pablo Isaza 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!