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 中隐藏键盘?
基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
