How to Hide Keyboard in Ionic 3?(如何在 Ionic 3 中隐藏键盘?)
问题描述
如何在ionic3中隐藏键盘?
How to Hide Keyboard in ionic3?
在 iPhone 测试期间,我们遇到了 ionic 3 应用程序的问题.填写支付网关信息(在 iFrame 中启动)后,每当我们使用返回按钮返回页面时,键盘不会隐藏.
We have a problem with ionic 3 apps during testing in iPhone. After fillup Payment Gateway information (which is launched in iFrame), Whenever we go to the back page using the back button, Keyboard is not Hiding.
我们使用了 cordova-plugin-ionic-keyboard 和 Keyboard.hide() 方法.但是没用.
We used cordova-plugin-ionic-keyboard and use Keyboard.hide() method. But didn't work.
推荐答案
使用 的键盘插件科尔多瓦:
Using Keyboard plugin for Cordova:
import { Keyboard } from '@ionic-native/keyboard/ngx';
...
constructor(private keyboard: Keyboard) { }
...
this.keyboard.show();
this.keyboard.hide();
或者如果您使用的是电容器(推荐):
Or if you are using Capacitor (recommended):
import { Plugins, KeyboardInfo } from '@capacitor/core';
const { Keyboard } = Plugins;
...
Keyboard.show();
Keyboard.hide();
这篇关于如何在 Ionic 3 中隐藏键盘?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Ionic 3 中隐藏键盘?


- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01