初始化 正如 @telegram-apps/bridge 文档 中所述,必须手动定义 事件处理程序,才能开始监听 Telegram 迷你应用程序事件。 此外,在我们的代码中,我们希望确保在调用某个方法时,该方法要么有效,要么我们 会收到该方法无效的通知。 为此,有必要了解当前使用的 Telegram Mini Apps 版本。 为满足这些要求,软件包提供了 init 函数,该函数接受具有以下结构的对象 : - interface Options {8 W+ n" D9 X6 W
- /** ? J) Y, u# y, D! |
- * True if the SDK should accept styles sent from the Telegram8 m; K4 ~7 [9 m0 U2 ]0 k7 t# u1 q: b. S
- * application.
+ W8 V1 q! K) R3 I - * @default true( v% _( P# w! V7 D. l w9 s
- */
) p7 N! q6 D: B& C3 A. S2 ^+ U4 N4 r - acceptCustomStyles?: boolean;
/ e2 k% v" [, k - /**
. {: _( k6 \4 G - * The maximum supported Mini Apps version.4 Z1 N( \6 R/ ^$ m8 Q1 t1 |; u
- * @default Extracted using the `retrieveLaunchParams`; |( m, c2 W5 e
- * function.& V B& f* r4 o, }* D/ L
- * @see retrieveLaunchParams8 X5 I4 I+ \) J( b5 W& B% Y
- */
5 x5 U/ B' d. I0 N9 L! `6 G - version?: Version;
& Q) E8 E O5 F& I7 x - /**) L( S; P& T& K7 }
- * Custom postEvent function.1 R) o/ N6 t, n* R0 C: h+ Y
- *
' Z8 p. @9 h q0 @) m1 ~0 | - * Passing the "strict" value creates a function that always
/ s2 R {- i5 u& m b/ A6 | - * checks if the specified call is supported by the current Mini
# l0 A6 |, Z' Q! ?2 q1 p - * Apps version. If the method is unsupported, an error+ ?% @% i. ?( }# n* U
- * will be thrown.
r" [$ s- l6 }/ ` - *2 p! ?5 n* T# q
- * Passing the "non-strict" value creates a postEvent function+ f4 O h6 L* Y3 ` b
- * that doesn't throw errors but warns about missing method% b7 g: I2 E N% X( W
- * support.
4 Z' i' Z* @/ U - *4 M/ d* E0 ], v# W, X+ _
- * @default 'strict'
& H0 _1 ?* ]/ X g. g) n - * @see createPostEvent; Z0 M. e) F" U0 L- @3 }
- */4 \3 ~) @ y! V6 d' Q
- postEvent?: PostEventFn | 'strict' | 'non-strict';5 A, o: L7 d* g: {
- }
复制代码在大多数情况下,开发人员不需要使用这些选项。 调用该函数后,将配置软件包的全局依赖关系,并创建 Telegram Mini Apps 事件处理程序。 - import { init } from '@telegram-apps/sdk';
$ E# I0 b0 O. b7 z, I - + Q, u6 w2 p. \9 d8 g0 u! `
- init();
复制代码 % ~. t' `1 d ]# _; V
& V" l4 O1 k9 ~4 I |