当我的回调函数(setid
)调用另一个函数(returnbCallback
)时,但没有传递数据,并且我看到的值为“ null”。
var swfitprofileName = [];
function setid (swiftid){
crud.getswift(swiftid).then(function (response) {
returnbCallback(response);
}).catch(function (err) {
return ("error:" + err);
});
}
function returnbCallback(data){
console.log("profileName1",swfitprofileName);
return swfitprofileName = data;
}
console.log("swfitprofileName",swfitprofileName);
如何访问另一个函数中的回调结果?