English 简体中文 繁體中文 한국 사람 日本語 Deutsch русский بالعربية TÜRKÇE português คนไทย french

简体中文 繁體中文 English 日本語 Deutsch 한국 사람 بالعربية TÜRKÇE คนไทย Français русский

回答

收藏

Telegram 小程序 | TypeScript @telegram-apps/sdk @2.x | 初始化

开源社区 开源社区 9607 人阅读 | 0 人回复 | 2025-02-24

初始化

正如 @telegram-apps/bridge 文档 中所述,必须手动定义 事件处理程序,才能开始监听 Telegram 迷你应用程序事件。

此外,在我们的代码中,我们希望确保在调用某个方法时,该方法要么有效,要么我们 会收到该方法无效的通知。 为此,有必要了解当前使用的 Telegram Mini Apps 版本。

为满足这些要求,软件包提供了 init 函数,该函数接受具有以下结构的对象 :

  1. interface Options {8 W+ n" D9 X6 W
  2.   /**  ?  J) Y, u# y, D! |
  3.    * True if the SDK should accept styles sent from the Telegram8 m; K4 ~7 [9 m0 U2 ]0 k7 t# u1 q: b. S
  4.    * application.
    + W8 V1 q! K) R3 I
  5.    * @default true( v% _( P# w! V7 D. l  w9 s
  6.    */
    ) p7 N! q6 D: B& C3 A. S2 ^+ U4 N4 r
  7.   acceptCustomStyles?: boolean;
    / e2 k% v" [, k
  8.   /**
    . {: _( k6 \4 G
  9.    * The maximum supported Mini Apps version.4 Z1 N( \6 R/ ^$ m8 Q1 t1 |; u
  10.    * @default Extracted using the `retrieveLaunchParams`; |( m, c2 W5 e
  11.    * function.& V  B& f* r4 o, }* D/ L
  12.    * @see retrieveLaunchParams8 X5 I4 I+ \) J( b5 W& B% Y
  13.    */
    5 x5 U/ B' d. I0 N9 L! `6 G
  14.   version?: Version;
    & Q) E8 E  O5 F& I7 x
  15.   /**) L( S; P& T& K7 }
  16.    * Custom postEvent function.1 R) o/ N6 t, n* R0 C: h+ Y
  17.    *
    ' Z8 p. @9 h  q0 @) m1 ~0 |
  18.    * Passing the "strict" value creates a function that always
    / s2 R  {- i5 u& m  b/ A6 |
  19.    * checks if the specified call is supported by the current Mini
    # l0 A6 |, Z' Q! ?2 q1 p
  20.    * Apps version. If the method is unsupported, an error+ ?% @% i. ?( }# n* U
  21.    * will be thrown.
      r" [$ s- l6 }/ `
  22.    *2 p! ?5 n* T# q
  23.    * Passing the "non-strict" value creates a postEvent function+ f4 O  h6 L* Y3 `  b
  24.    * that doesn't throw errors but warns about missing method% b7 g: I2 E  N% X( W
  25.    * support.
    4 Z' i' Z* @/ U
  26.    *4 M/ d* E0 ], v# W, X+ _
  27.    * @default 'strict'
    & H0 _1 ?* ]/ X  g. g) n
  28.    * @see createPostEvent; Z0 M. e) F" U0 L- @3 }
  29.    */4 \3 ~) @  y! V6 d' Q
  30.   postEvent?: PostEventFn | 'strict' | 'non-strict';5 A, o: L7 d* g: {
  31. }
复制代码

在大多数情况下,开发人员不需要使用这些选项。

调用该函数后,将配置软件包的全局依赖关系,并创建 Telegram Mini Apps 事件处理程序。

  1. import { init } from '@telegram-apps/sdk';
    $ E# I0 b0 O. b7 z, I
  2. + Q, u6 w2 p. \9 d8 g0 u! `
  3. init();
复制代码
% ~. t' `1 d  ]# _; V

& V" l4 O1 k9 ~4 I
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则