这可能是一个潜在的重复,但到目前为止我无法获得任何解决方案,所以我不得不写下来。 我有一个函数正在发出一个http请求,并做了更多的事情,如 -
function getData(){
return $http.get('/'+ 'somedata')
.then(somefunctionA)
.then(somefunctionB)
}
当我调用此函数并使用等待promise时,它仍然没有给我任何数据。在此函数后打印数据。
function callgetData(){
return getData()
.then(function (data from getData){
console.log(datafromgetData)
}).catch (function (error){
throw error
})
}
你能帮助和原谅我的天真吗?我是JS的新手。
由于