迷你应用程序 💠组件 负责管理 Telegram 迷你应用程序内的功能。 安装在使用该组件之前,必须使用 mount 方法安装该组件,该方法会更新 isMounted 信号属性。 Variable : - import { miniApp } from '@telegram-apps/sdk';2 k4 J4 R- }, V* |3 x7 T
2 c3 B6 C; ]9 n/ a _- miniApp.mount();
$ F/ y' V: r: B p: [ - miniApp.isMounted(); // true
复制代码Functions : - import { mountMiniApp, isMiniAppMounted } from '@telegram-apps/sdk';
3 q4 }- N' g. z% T2 H& w: ` - v/ E9 j' N9 D$ k
- mountMiniApp();
: \$ u4 _! i* V' `! R* A - isMiniAppMounted(); // true
复制代码INFO mount方法还会挂载 Theme Params作用域,以提取正确的 配置值。
' _$ n7 Y. {; t4 r' W0 U# `要卸载组件,请使用 unmount 方法: Variable : - miniApp.unmount();
% Y- w: S$ W+ c' B$ T - miniApp.isMounted(); // false
复制代码 Functions :# k3 a, m* P# B) {, y4 K
9 ?8 f. J2 Z1 q* e3 W9 t
- import { unmountMiniApp, isMiniAppMounted } from '@telegram-apps/sdk';
, J+ ]* M/ ^5 f! l0 E$ Y! N7 I" ], r
9 }) H! y* Q+ Z1 f% C- unmountMiniApp();9 r+ L6 B# p. T; j
- isMiniAppMounted(); // false
复制代码 绑定 CSS 变量要通过 CSS 变量公开 miniApp 属性,请使用 bindCssVars 方法。 调用该方法后,isCssVarsBound 信号属性会被更新。 此方法可选择接受一个函数,该函数可将 bgColor 和 headerColor 的值转换为 CSS 变量名。 默认情况下,数值会以前缀 --tg- 转换为 kebab 大小写。 Variable : - miniApp.bindCssVars();) @9 v. b! s1 O. [. K& f, m
- // Creates CSS variables like:- m$ x$ @# y8 C0 }
- // --tg-bg-color: #aabbcc! }& p% b$ I* x( [2 @! l
- // --tg-header-color: #aabbcc
/ j$ w* @ {: H7 }5 `: Y - / ~& m6 b" V+ [# U7 u" O4 Y
- miniApp.bindCssVars(key => `--my-prefix-${key}`);
* K- H ?: Z8 X, W4 R% z" J - // Creates CSS variables like:
k8 O W: W6 I - // --my-prefix-bgColor: #aabbcc
7 R( ?8 D: o1 h9 {$ M: T E - // --my-prefix-headerColor: #aabbcc
6 l3 T) _8 R6 D9 q* d8 e& `
' }$ N0 q0 d( \- miniApp.isCssVarsBound(); // true
复制代码Functions : - import { bindMiniAppCssVars, isMiniAppCssVarsBound } from '@telegram-apps/sdk';1 Z6 {6 j0 y+ _( `
- ( [* @) V! A# I/ l' c% [
- bindMiniAppCssVars();
- d( N+ C( f0 B$ B - // Creates CSS variables like:% ~+ L8 q1 i4 }
- // --tg-bg-color: #aabbcc# V5 q8 i6 N# U! {' G
- // --tg-header-color: #aabbcc
4 c, s ], {7 D
( O" j3 ]* }- k: a8 h5 f) x' k- bindMiniAppCssVars(key => `--my-prefix-${key}`);
1 @' T0 i) T/ q3 B - // Creates CSS variables like:. b! J+ i H* y7 I% J3 v1 m5 P
- // --my-prefix-bgColor: #aabbcc. F v2 N/ _, Y# x
- // --my-prefix-headerColor: #aabbcc$ c" g* u, z3 K' m* w ?
- ' ]$ j; Y0 F9 S8 m; `' F$ H
- isMiniAppCssVarsBound(); // true
复制代码 页眉颜色要更改迷你应用程序的标题颜色,可使用方法 setHeaderColor。 反过来, 会更新 headerColor 信号属性值。 该方法接受 RGB 颜色值或以下字符串之一:bg_color、secondary_bg_color。 Variable : - if (miniApp.setHeaderColor.isSupported()) {: |$ I1 @% V4 |7 Z* ?0 a: G
- miniApp.setHeaderColor('bg_color');' O. r- r" U! @" [' P4 _9 o( \7 t
- miniApp.headerColor(); // 'bg_color'
% P9 D/ o' C2 D. X& H7 [ - }
' `' z8 t0 w; M2 `6 l; n6 U6 K i - 4 T8 s* i0 I$ W- W. H
- if (
$ f3 t( h! C0 n9 K8 K$ M8 H - miniApp.setHeaderColor.isSupported(). q8 R, U& Y) w2 P% Y4 m9 L8 C7 ?% l% N
- && miniApp.setHeaderColor.supports('color')
! m7 w. D5 @ V - ) {" T- v2 ~: |4 n4 ~2 v, s
- miniApp.setHeaderColor('#aabbcc');# W) M; z: G/ K# S2 I
- miniApp.headerColor(); // '#aabbcc'
# @: U# k2 U8 w6 W - }
复制代码Functions : - import {
% I1 h: E, ^9 C8 U - setMiniAppHeaderColor,0 s* M0 ~* G: M4 x3 W+ g/ M8 ?
- miniAppHeaderColor,: Q7 i( e# O6 Z3 b# J9 K! E
- } from '@telegram-apps/sdk';
4 ]- {4 g# \3 O- c - 1 {( k4 f& Y: e
- if (setMiniAppHeaderColor.isSupported()) {5 x, Y5 @3 ~3 ?( W2 w! P! N
- setMiniAppHeaderColor('bg_color');
6 p+ }" i$ Z0 f3 K! o% d - miniAppHeaderColor(); // 'bg_color'+ w6 S5 _% M8 ?1 ~' @: J: d; N: e
- } I7 ^ P' }; x6 e. h1 c, `
- ]# X. M1 ]" c
- if (; N' o- ~5 Y% }6 W. Y
- setMiniAppHeaderColor.isSupported(); {3 ^+ s8 t3 Y t4 T0 j6 K
- && setMiniAppHeaderColor.supports('color')
, {2 I1 l9 j9 x, T) D' h3 x. g - ) {/ ~0 w6 @4 E& b" m( l- l# m
- setMiniAppHeaderColor('#aabbcc');
* _$ F& q O4 x; x ?; `8 u - miniAppHeaderColor(); // '#aabbcc'
- j; N0 h8 l9 r. F/ b: W4 Z - }
复制代码 背景颜色要更新迷你应用程序的背景颜色,请使用 setBackgroundColor 方法。 调用 时,该方法会更新 headerColor 信号属性值。 Variable : - if (miniApp.setBackgroundColor.isSupported()) { J c7 n2 F$ y6 A. `
- miniApp.setBackgroundColor('#ffffff');9 K. o2 W9 G( v0 o' Q: \
- miniApp.backgroundColor(); // '#ffffff': E8 i% S! Q- D9 o% I& l; x
- }
复制代码Functions : - import { : n" z/ q- E( u B0 \
- setMiniAppBackgroundColor,9 u" e; `& M* \+ m1 i6 G/ ~9 m
- miniAppBackgroundColor,6 l; z7 e& U K! p7 v8 |2 f2 d
- } from '@telegram-apps/sdk';5 o* Z$ v* C: w, h& Q3 y
& {+ i4 t* U6 r9 L% \% z5 ]* Z- if (setMiniAppBackgroundColor.isSupported()) {
& d8 b' W! P8 y: \/ g - setMiniAppBackgroundColor('#ffffff');9 ~& S2 A9 @! L
- miniAppBackgroundColor(); // '#ffffff'
5 D' n" p0 i/ e! y1 N) e# T - }
复制代码 方法close要关闭迷你应用程序,请使用 close 方法。 Variable : Functions : - import { closeMiniApp } from '@telegram-apps/sdk';5 X' ~- V. U, @9 q* }: D$ q
$ S7 z4 o. d5 F* |6 C- closeMiniApp();
复制代码 ready要发出 Mini App 已准备好显示的信号,请使用 ready 方法。 调用后, 加载占位符会被隐藏,而迷你应用程序则会显示出来。 Variable : Functions : - import { miniAppReady } from '@telegram-apps/sdk';4 A8 n0 V9 O9 N* B8 P" M
, j: d7 ^% I3 C& ?9 n5 v- miniAppReady();
复制代码TIP 在加载基本界面元素后尽早调用该函数,以确保 顺畅的用户体验。 / l8 C( D5 E( [, N
|