gpt4 book ai didi

ionic-framework - 是否可以使用$ ionicPopup.confirm()更改按钮的文本?

转载 作者:行者123 更新时间:2023-12-03 12:27:29 25 4
gpt4 key购买 nike

我正在使用$ ionicPopup.confirm(),但我想更改“取消按钮”文本。有可能这样做吗?

我知道.show()语法:

  buttons: [
{ text: 'Cancel' }
]

但这似乎不适用于.confirm()...

谢谢4的帮助

最佳答案

至少在最新版本的Ionic(1.0.0)中,您可以执行以下操作:

    var confirmPopup = $ionicPopup.confirm({
title: 'Popup title',
template: 'Popup text',
cancelText: 'Custom cancel',
okText: 'Custom ok'
}).then(function(res) {
if (res) {
console.log('confirmed');
}
});

这是 relative documentation

关于ionic-framework - 是否可以使用$ ionicPopup.confirm()更改按钮的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30351891/

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