我正在使用 ionic v1 实现一个应用程序,我正在创建一个实用程序.js
文件来分隔一些仅在开发环境中使用的函数。我正在尝试实现一个可以从任何离子视图访问的函数。我使用的代码是:
myApp.prototype.showAlert = function() {
var alertPopup = $ionicPopup.alert({
title: 'Gendalf',
template: 'You shall not Pass'
});
};
答案 0 :(得分:1)
来自离子文档here
// An alert dialog
$scope.showAlert = function() {
var alertPopup = $ionicPopup.alert({
title: 'Don\'t eat that!',
template: 'It might taste good'
});
alertPopup.then(function(res) {
console.log('Thank you for not eating my delicious ice cream cone');
});
};
然后当你想要显示它时,只需调用方法:
$scope.showAlert();
在您的示例代码中,您可以将其称为:
myApp.showAlert();