gpt4 book ai didi

javascript - 如何连接 Angular Strap 模态显示事件

转载 作者:行者123 更新时间:2023-11-30 00:27:22 26 4
gpt4 key购买 nike

我的模态显示很好。我正在尝试弄清楚如何在显示模态时运行函数。

 var = loginModal = $modal({ placement: 'left', title: '', content: webauth, show: false });

$scope.$on('modal.show', function () {
console.log("SHOWN");
debugger;
});

$scope.showModal = function () {

loginModal.$promise
.then(loginModal.show);

};

我期待 $scope.$on('modal.show') 在显示模式时触发,但到目前为止运气不好。

最佳答案

试试这个:

$scope.showModal = function() {
myModal.$promise.then(myModal.show).then(function(){
console.info('shown');
});
};

关于javascript - 如何连接 Angular Strap 模态显示事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30925043/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com