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

130
Views
Getting response from axios function

When calling the lookUpItem function from ItemSearch.vue I get undefined.

ItemSearch.vue

   <script setup lang="ts">
      import { lookUpItem } from '../systemApi'

      async function getItemDetails() {
         const response = await lookUpItem(mNumber, location)      
}
   </script>

systemAPI.ts

export async function lookUpItem(mNumber: number, location: number) {
   getHash().then((hash) => {
      axios.get(url)
      .then((response) => {
         // console.log(response) <- outputs the correct data to console.
         return response
}

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You could try this:

For better reading (and understanding)

export async function lookUpItem(mNumber: number, location: number) {
  try{
     const hash = await getHash();
     const response = await axios.get(url);
     return response;
  }catch(err){
    throw err;
  }
}
  
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!