0
ionic v1を使用してアプリケーションを実装しています。これは、開発環境でのみ使用される一部の機能を分離するユーティリティ.js
ファイルを作成しています。私は、イオンビューからアクセスできる関数を実装しようとしています。使用してイムコードは次のとおりです。ionic(v1)フレームワークを使用してポップアップviewControllerを表示するにはどうすればいいですか?
$scope.showAlert();
:イオンドキュメントその後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');
});
};
あなたはそれだけでメソッドを呼び出す見せたいから
myApp.prototype.showAlert = function() {
var alertPopup = $ionicPopup.alert({
title: 'Gendalf',
template: 'You shall not Pass'
});
};