是否有人可以解释如何使用@ {3}}中描述的初始化(选项), isShown()等离子模型方法。
答案 0 :(得分:0)
initialize方法是内部使用的构造函数。这一点基本上向您展示了可以将here传递给$ iconicModal服务上的fromTemplate
和fromTemplateUrl
方法的方法。
其他方法如isShown
将用于模式的实例。
$ionicModal.fromTemplateUrl('my-modal.html', { <- this hash goes to initialize
scope: $scope,
animation: 'slide-in-up'
}).then(function(modal) {
$scope.modal = modal; <- this is the instance to call "isShown"/etc on
});