抖音开放平台Logo
开发者文档
控制台
  • API 概览
  • 开放能力
  • 基础
  • 渲染
  • 设备
  • 文件
  • 位置
  • 媒体
  • 网络
  • 游戏转发分享
  • 实时语音
  • 数据缓存
  • 系统
  • 广告
  • 界面
  • 键盘
  • tt.showKeyboard
  • tt.updateKeyboard
  • tt.hideKeyboard
  • tt.onKeyboardComplete
  • tt.onKeyboardConfirm
  • tt.onKeyboardInput
  • tt.offKeyboardComplete
  • tt.offKeyboardConfirm
  • tt.offKeyboardInput
  • 交互
  • 菜单
  • 支付
  • Worker
  • tt.onKeyboardConfirm
    收藏
    我的收藏

    基础库 1.0.0 开始支持本方法,这是一个同步方法。

    监听用户点击键盘确定按钮时的事件。 使用 tt.onKeyboardConfirm 或者 tt.onKeyboardComplete 接口获得的用户输入值,平台会自动进行敏感词检测,将敏感字眼做屏蔽。

    前提条件
    业务背景
    使用限制
    注意事项
    相关教程

    语法

    tt.onKeyboardConfirm(handler)

    参数说明

    handler

    类型默认值必填说明最低支持版本
    function
    监听点击键盘确定按钮事件的回调函数
    1.0.0

    handler 是一个回调函数,接收 object 类型的参数,属性如下:

    属性名类型说明最低支持版本
    valuestring
    键盘输入的当前值
    1.0.0

    返回值

    错误码

    errorCodeerrMsgerrorType说明最低支持版本
    999999invalid paramD
    参数错误
    1.0.0
    999993internal errorF
    小游戏框架内部错误,有需要请创建工单咨询
    1.0.0

    代码示例

    tt.onKeyboardConfirm((data) => { console.log('键盘输入的当前值', data.value); });