抖音开放平台Logo
开发者文档
控制台
  • API 概览
  • 开放能力
  • 基础
  • tt.canIUse
  • 定时器
  • 分包加载
  • 更新
  • 性能
  • tt.getPerformance
  • tt.onMemoryWarning
  • tt.triggerGC
  • 调试
  • 渲染
  • 设备
  • 文件
  • 位置
  • 媒体
  • 网络
  • 游戏转发分享
  • 实时语音
  • 数据缓存
  • 系统
  • 广告
  • 界面
  • 支付
  • Worker
  • tt.getPerformance
    收藏
    我的收藏

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

    获取性能管理器。

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

    语法

    tt.getPerformance()

    参数说明

    返回值

    返回值为 object 类型,详细参数描述如下:

    属性名类型说明最低支持版本
    nowfunction
    获取当前时间的时间戳(单位:微秒)
    1.15.0

    错误码

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

    扫码体验

    请使用字节宿主APP扫码

    代码示例

    开发者工具中预览

    // 获取性能管理器 let performance = tt.getPerformance(); // 获取当前时间的时间戳 let now = performance.now();