我的代码是这样的:
var isPushEnabled;
OneSignal.isPushNotificationsEnabled(function(response) {
if (response) {
isPushEnabled = true;
console.log(isPushEnabled); // it shows true
} else {
isPushEnabled = false;
console.log(isPushEnabled); // it shows false
}
});
console.log(isPushEnabled); // it shows undefined
我正在寻找一种在最后阶段显示“真实”或“虚假”而不是“未定义”的方法。
提前感谢您的回复!