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

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

回答

收藏

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

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

初始化

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

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

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

  1. interface Options {. D) b& E9 M; u9 [/ ^' |
  2.   /**
    $ ~0 N' P! I. J( e# h: ~, z
  3.    * True if the SDK should accept styles sent from the Telegram
    4 z# N% ~. ~6 F5 O9 s
  4.    * application.6 h" S$ J# h* Y$ D$ Z- \# o
  5.    * @default true8 g; p# C6 j1 T; T. B" j
  6.    */5 m; A# k; a* v& I% E
  7.   acceptCustomStyles?: boolean;
    & l( \$ o6 A* b7 k3 ^$ n
  8.   /**
    9 R' s' @! L' k$ c! c
  9.    * The maximum supported Mini Apps version.% ^& m! a1 N. [' W3 D6 g2 {: x
  10.    * @default Extracted using the `retrieveLaunchParams`
    # ]! Z: S$ M1 c' i
  11.    * function.* q4 V* U  D+ d9 ~6 T
  12.    * @see retrieveLaunchParams; D8 I/ a6 u8 O3 ^( T9 @- F
  13.    */
    : \! O5 A8 ^* {0 O8 r
  14.   version?: Version;
    $ f: e$ `. J4 O+ Y
  15.   /**
    4 X! M1 S" K7 e4 |# A+ V
  16.    * Custom postEvent function.
    # t  U+ y- r" [; p
  17.    *
    6 E4 g0 c) P8 i" u- U9 z
  18.    * Passing the "strict" value creates a function that always/ v( B$ j4 [) Q" i' H- R& J: z6 i' a
  19.    * checks if the specified call is supported by the current Mini
    5 t( g7 E% D* {, C7 W1 m* i
  20.    * Apps version. If the method is unsupported, an error3 c, H7 R5 R! m& @. W8 g
  21.    * will be thrown.
    ; ]: O5 X6 f) B& v0 n& R+ C
  22.    *  m( c5 @: B+ K6 M6 [1 Y) b( H
  23.    * Passing the "non-strict" value creates a postEvent function+ e" I" R/ f' S1 ^$ D. \
  24.    * that doesn't throw errors but warns about missing method5 v9 M& J, H6 g' g
  25.    * support.
    ' A5 j: ]7 W+ \
  26.    *
    8 ~3 Q3 F& z( s: h! h- [. C+ E1 D
  27.    * @default 'strict'- Z; q1 V1 e- G* L1 i: h
  28.    * @see createPostEvent- {0 E! y5 ?: y& F  K
  29.    */
    9 ^/ p% f+ @* c8 C# D
  30.   postEvent?: PostEventFn | 'strict' | 'non-strict';$ g6 V7 S, b4 U+ K1 J  i! R) A+ v
  31. }
复制代码

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

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

  1. import { init } from '@telegram-apps/sdk';; ]* S* V$ E" v* V9 `
  2. ; }, B& `4 B/ [
  3. init();
复制代码

: ~  f! O6 d3 u  u) a
4 v5 {- Q2 D  |: A
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则