0
我是Ionic的新手,我想使用Ionic警報更改用戶的密碼。 目前,我得到這個:如果密碼不匹配,Ionic警報顯示錯誤
let alert: Alert = Alert.create({
title: 'Forgot Password',
subTitle: 'Enter a new password',
inputs: [
{
name: 'password',
type: 'password',
placeholder: 'New Password'
},
{
name: 'confirm_password',
type: 'password',
placeholder: 'Confirm Password'
}
],
buttons: [
{
text: 'Change Password',
handler: data => {
if (data.password != data.confirm_password) {
return false;
} else {
...some requests sent...
}
}
}
]
});
現在,如果我輸入2個不同的密碼,警報沒有被駁回,但我想上顯示警告信息。
這可以用Ionic Alert完成嗎?我沒有設法找到任何東西。
謝謝!