ReferenceError: resolve is not defined

前端 未结 2 2115
一整个雨季
一整个雨季 2021-02-08 15:08

I have a function to call the google speech api. Looks all is good but I cannot find why its giving me the error. I am beginner with node and promises so not sure why this error

2条回答
  •  逝去的感伤
    2021-02-08 15:19

    Before using resolve you need to pass the resolve as argument:

    In this case,

    return new Promise((resolve, reject) => {
              axios.post('YOUR URL HERE', params)
                    .then(response => {                    
                        resolve() // Here you can use resolve as it passed as argument
                    })
    });
    

    Note: You can use GET, POST for the axios call

提交回复
热议问题