初始化 正如 @telegram-apps/bridge 文档 中所述,必须手动定义 事件处理程序,才能开始监听 Telegram 迷你应用程序事件。 此外,在我们的代码中,我们希望确保在调用某个方法时,该方法要么有效,要么我们 会收到该方法无效的通知。 为此,有必要了解当前使用的 Telegram Mini Apps 版本。 为满足这些要求,软件包提供了 init 函数,该函数接受具有以下结构的对象 : - interface Options {. D) b& E9 M; u9 [/ ^' |
- /**
$ ~0 N' P! I. J( e# h: ~, z - * True if the SDK should accept styles sent from the Telegram
4 z# N% ~. ~6 F5 O9 s - * application.6 h" S$ J# h* Y$ D$ Z- \# o
- * @default true8 g; p# C6 j1 T; T. B" j
- */5 m; A# k; a* v& I% E
- acceptCustomStyles?: boolean;
& l( \$ o6 A* b7 k3 ^$ n - /**
9 R' s' @! L' k$ c! c - * The maximum supported Mini Apps version.% ^& m! a1 N. [' W3 D6 g2 {: x
- * @default Extracted using the `retrieveLaunchParams`
# ]! Z: S$ M1 c' i - * function.* q4 V* U D+ d9 ~6 T
- * @see retrieveLaunchParams; D8 I/ a6 u8 O3 ^( T9 @- F
- */
: \! O5 A8 ^* {0 O8 r - version?: Version;
$ f: e$ `. J4 O+ Y - /**
4 X! M1 S" K7 e4 |# A+ V - * Custom postEvent function.
# t U+ y- r" [; p - *
6 E4 g0 c) P8 i" u- U9 z - * Passing the "strict" value creates a function that always/ v( B$ j4 [) Q" i' H- R& J: z6 i' a
- * checks if the specified call is supported by the current Mini
5 t( g7 E% D* {, C7 W1 m* i - * Apps version. If the method is unsupported, an error3 c, H7 R5 R! m& @. W8 g
- * will be thrown.
; ]: O5 X6 f) B& v0 n& R+ C - * m( c5 @: B+ K6 M6 [1 Y) b( H
- * Passing the "non-strict" value creates a postEvent function+ e" I" R/ f' S1 ^$ D. \
- * that doesn't throw errors but warns about missing method5 v9 M& J, H6 g' g
- * support.
' A5 j: ]7 W+ \ - *
8 ~3 Q3 F& z( s: h! h- [. C+ E1 D - * @default 'strict'- Z; q1 V1 e- G* L1 i: h
- * @see createPostEvent- {0 E! y5 ?: y& F K
- */
9 ^/ p% f+ @* c8 C# D - postEvent?: PostEventFn | 'strict' | 'non-strict';$ g6 V7 S, b4 U+ K1 J i! R) A+ v
- }
复制代码在大多数情况下,开发人员不需要使用这些选项。 调用该函数后,将配置软件包的全局依赖关系,并创建 Telegram Mini Apps 事件处理程序。 - import { init } from '@telegram-apps/sdk';; ]* S* V$ E" v* V9 `
- ; }, B& `4 B/ [
- init();
复制代码
: ~ f! O6 d3 u u) a
4 v5 {- Q2 D |: A |