import inputMethod from '@ohos.inputMethod'; /** * 隐藏键盘操作 */ export function hideKeyboard() { try { const ctrl = inputMethod.getController() if (ctrl) { ctrl.stopInputSession(() => { }) } } catch (error) { // 处理隐藏失败 } }