辅助按钮 负责 Telegram 迷你应用程序二级按钮的💠组件。 检查支持要检查当前 Telegram 迷你应用程序版本是否支持辅助按钮,请使用 isSupported 方法: Variable : - import { secondaryButton } from '@telegram-apps/sdk';
9 O; V' j4 V( j7 A8 h' s! D+ B8 E - & W% n! |1 n" a$ S0 S
- secondaryButton.isSupported(); // boolean
复制代码Functions : - import { isSecondaryButtonSupported } from '@telegram-apps/sdk';) C1 v- ~: U5 J1 P$ x
- 7 \7 t. u; N6 ]2 Q
- isSecondaryButtonSupported(); // boolean
复制代码 安装在使用该组件之前,有必要将其安装到配置正确的 属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { secondaryButton } from '@telegram-apps/sdk';
6 j- u3 {. l- B6 F0 J' G
$ m; A, P# B2 d8 f* e# A: m- secondaryButton.mount();
0 t, t; i: ?( `& _# p! h# O/ H - secondaryButton.isMounted(); // true
复制代码Functions : - import {! S/ R3 f+ _( `% u5 ~
- mountSecondaryButton,
; R5 P) V" f2 v! h4 G8 L" o - isSecondaryButtonMounted,, X; V8 W& [/ C3 A+ s) X* |
- } from '@telegram-apps/sdk';
- ]+ w' T8 o c1 W/ R! v
" w7 H4 ^. l1 L. }- mountSecondaryButton();
8 R3 ?2 a9 h# q- y9 h* G, W8 e2 o - isSecondaryButtonMounted(); // true
复制代码
. _8 g8 S1 Q/ v; q' R* `要卸载,请使用 unmount 方法: Variable : - secondaryButton.unmount();
& @/ g% l) R9 ?5 g+ y - secondaryButton.isMounted(); // false
复制代码Functions : - import {
& Q" m! N, }, ^ - unmountSecondaryButton,7 d F( v$ n$ _. q* ]/ b
- isSecondaryButtonMounted,
( F: _) X5 S" A4 r - } from '@telegram-apps/sdk';, ]' X6 A) U9 e& G# s9 ~
- 7 j p) K* T5 {0 G# c1 j1 k+ o; [
- unmountSecondaryButton();6 R2 `+ B, v# ?- E
- isSecondaryButtonMounted(); // false
复制代码WARNING 该组件的属性取决于 Mini App 和 Theme Params 组件的值。 具体来说,二级按钮使用 Mini App 的 bottomBarBgColor 和一些主题参数颜色。 在使用辅助按钮之前,请确保将这些组件安装到 。 设置属性要更新按钮属性,请使用 setParams 方法。 它接受一个带有可选 属性的对象,每个属性负责各自的按钮特性。 反过来,调用该方法会更新 ,如 backgroundColor, hasShineEffect, isVisible, isEnabled, isLoaderVisible, position, state, textColor 和 text。 Variable : - secondaryButton.setParams({' q4 F! ~0 P2 @; f' _3 j
- backgroundColor: '#000000',
% J9 ]1 p7 ^' D' e5 f( | - hasShineEffect: true,
/ @' i! r6 c' s - isEnabled: true,
7 ~. z. [2 \2 v8 ]# _2 ]1 u - isLoaderVisible: true,. ?. W4 A4 [5 p5 X1 r- ?
- isVisible: true,- Q6 |0 A3 U! e# d/ S
- position: 'top',* ^& M4 B' D# y$ ^+ B* s
- text: 'My text',) t0 _( U1 ?- ~, e
- textColor: '#ffffff'2 b) y: l' Q0 v! ]3 D# _7 f, Y
- });
; l1 I% a& g b j% k5 {; { - secondaryButton.backgroundColor(); // '#000000'
. x8 V. w1 y& b2 H. y4 Y - secondaryButton.hasShineEffect(); // true1 G( z. E4 z1 D9 I- W
- secondaryButton.isEnabled(); // true
, ]* R4 Y( u9 P. Q3 o4 q$ \; z - secondaryButton.isLoaderVisible(); // true" n. k& j8 |* i
- secondaryButton.isVisible(); // true
4 X' h+ f8 F7 h: `: _) j) n2 H - secondaryButton.position(); // 'top'7 D6 [. F8 O ?1 N
- secondaryButton.text(); // 'My text'
& D/ }' j, r, i {& v- {' |- L - secondaryButton.textColor(); // '#ffffff'
# P7 k# h: p1 w+ u+ f - 5 h, K# o, Z1 ?0 V* {3 O3 s# ^
- secondaryButton.state();
' t; |. w2 y9 n: ]0 J2 K0 d - // {! ?0 q! b" n% O- _$ ?% r% \& ~
- // backgroundColor: '#000000',
2 R$ {/ s" g2 C; c3 ?4 g3 ^: p - // hasShineEffect: true,; g( d3 b& [) Q) Z
- // isActive: true,
2 a7 D) U* u+ W - // isLoaderVisible: true,; f6 w+ I- Z" E, H
- // isVisible: true,
8 S$ K" g" f+ O1 B+ f( t - // position: 'top',. W0 ~* K, z1 P( Z: b% @
- // text: 'My text',8 |. W# H. W/ ~* |! a( W
- // textColor: '#ffffff'0 {' u/ F7 D) v( r- V
- // }
复制代码Functions : - import {
! h3 u M ?; `: q" O - setSecondaryButtonParams,
0 J/ `( h8 E- n0 j% t, A# u - secondaryButtonBackgroundColor,% O; G& W$ \# [: B
- secondaryButtonHasShineEffect,
# ~1 S" P/ v: m- f+ j# J8 w - isSecondaryButtonVisible,& u- m, F4 [# M: K" C
- isSecondaryButtonEnabled,7 E( E# a% ]. e9 ^1 |* Y; a7 \
- isSecondaryButtonLoaderVisible,' T4 B4 Y! n# s9 h0 y, u/ J
- secondaryButtonState,
, J: c9 O: W& d. p - secondaryButtonTextColor,* j! h4 a5 P" I+ j1 t8 l1 b
- secondaryButtonText,4 J- i* V3 H' m
- secondaryButtonPosition,
# D; d7 Q. ^2 u, W' K, \" L - } from '@telegram-apps/sdk';
. e p. R% S( U - . G+ S0 c% z( \' [
- setSecondaryButtonParams({
6 m& X, c" ^ C0 o6 o - backgroundColor: '#000000',1 ]% V3 }7 i: P( I' r9 @7 L( _( `
- hasShineEffect: true,
2 n/ ~3 M$ W( `" K; p( i2 _ - isEnabled: true,
; g, s, ^6 c, F4 [ - isLoaderVisible: true,
1 C9 x: g4 G* T9 g# u - isVisible: true,
4 @* s, _) V+ S - position: 'top',
! I$ L8 ^8 H+ ]! G/ `) o - text: 'My text',
/ C) n: t( T2 R7 s5 V6 q - textColor: '#ffffff': z7 }* B& i- ~3 j4 j( y7 B
- });
0 I) p2 [: ^5 J; M2 d - secondaryButtonBackgroundColor(); // '#000000'
5 s/ g0 k0 y! S - secondaryButtonHasShineEffect(); // true, O; f) o5 L; p( L( t
- isSecondaryButtonEnabled(); // true
" A' q( e5 K6 p' A% Y; l, i - isSecondaryButtonLoaderVisible(); // true
# n1 p1 r" s4 Q; x- h - isSecondaryButtonVisible(); // true0 s. ~5 D5 D% I/ v' g
- secondaryButtonPosition(); // 'top'- G4 G j4 o; z; y4 f, G
- secondaryButtonText(); // 'My text'
3 I/ B: L% I# A: ~/ G* S - secondaryButtonTextColor(); // '#ffffff'
/ ]+ R" s3 M s) |- h/ h4 [
$ }+ f; w2 p; l/ P- secondaryButtonState();) d! l+ J; u7 O+ C# a; D
- // {7 m/ e+ S8 i" c `- P
- // backgroundColor: '#000000',) W7 [, b. D" k8 a& `6 H; d+ x' l
- // hasShineEffect: true,
: L: D, s. r, g' Z( N9 X6 w8 u - // isActive: true,
- _. g! q4 S: `/ @3 O - // isLoaderVisible: true,% ?) @0 C- j9 n
- // isVisible: true,% ~2 F8 G5 B% ^* b- G% C
- // position: 'top',5 K$ @5 _+ l& q7 w$ O
- // text: 'My text',
# v1 \- Y! e4 K4 _% A8 }" o - // textColor: '#ffffff'( w5 D: J# e. Q! d, _
- // }
复制代码 跟踪点击要添加按钮点击监听器,请使用 onClick 方法。 它返回一个函数,用于移除绑定的 监听器。 或者,您也可以使用 offClick 方法。 Variable : - function listener() {
4 V( L: g6 V0 z/ A - console.log('Clicked!');
" g( t6 |$ ~9 s. k. d! J - }0 @ B* Q D; P* P) R+ I6 _! `6 Q
- - J: @: j" ]' h$ a1 b8 S3 X
- const offClick = secondaryButton.onClick(listener);
- S- B$ \9 K. }1 D - offClick(); T" [* z# X/ ?6 R. v
- // or
: V( H% N6 A, i5 Z( J3 o - secondaryButton.onClick(listener);
7 Y' N. Q4 x/ k1 A n: \/ ? - secondaryButton.offClick(listener);
复制代码Functions : - import {6 g2 s* W5 d% z+ }+ u, ]( G
- onSecondaryButtonClick,
0 f" Q0 d. y: A& e( z5 b3 | - offSecondaryButtonClick,) ^) H2 _0 }; Z$ ]* i
- } from '@telegram-apps/sdk';
% G+ w+ m' A1 q9 T- e/ J - ) r+ f$ q& h1 F# J3 D2 s; k
- function listener() {- [& n1 c* T; _$ }0 ~! P' X
- console.log('Clicked!');* x7 c/ ^7 Z6 _2 [
- }1 L8 q/ [3 `1 @
# G h) ~% h* Y; Q- const offClick = onSecondaryButtonClick(listener);+ u9 `3 q$ _! O2 U7 j
- offClick();- h3 h( h: ]0 J1 O8 ]
- // or
' t+ F! s ?2 c/ _& ~ - onSecondaryButtonClick(listener);
/ M0 ?! U. m9 n* j( c9 L( x - offSecondaryButtonClick(listener);
复制代码
0 R3 v. c: O" }4 M0 `
; K: u& g, I( y9 B* W9 q j |