我想知道并在我的应用中触发弹出警报上的OK
按钮,这是我的代码:
$scope.showAlert = function (msg) {
$ionicPopup.alert({
title: msg.title,
template: msg.message,
okText: 'Baik',
okType: 'button-positive' ,
})
}
$scope.showAlert({
title: "Update",
message: "Silahkan Update terlebih dahulu di playstore",
onTap: function(e) {
return $window.open('https://google.com', '_self') || true
}
});
所以我想要的只是点击OK
按钮,它会重定向到外部网址。