辅助按钮 负责 Telegram 迷你应用程序二级按钮的💠组件。 检查支持要检查当前 Telegram 迷你应用程序版本是否支持辅助按钮,请使用 isSupported 方法: Variable : - import { secondaryButton } from '@telegram-apps/sdk';! F) c) s) @; I4 }
- ! v7 N, e) j7 ?- d) @' x
- secondaryButton.isSupported(); // boolean
复制代码Functions : - import { isSecondaryButtonSupported } from '@telegram-apps/sdk';5 ?& N% z0 @9 `+ N8 }, ~. w& N l9 C
1 }8 l8 l! ?! G+ e- isSecondaryButtonSupported(); // boolean
复制代码 安装在使用该组件之前,有必要将其安装到配置正确的 属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { secondaryButton } from '@telegram-apps/sdk';
+ y1 m3 J; ^% t `! X$ W: a - 4 `* Q3 I3 V( X. \
- secondaryButton.mount();
]* K8 g& ~" h1 Y# z! V0 y: W - secondaryButton.isMounted(); // true
复制代码Functions : - import {' Y, N( M, P- f( ~, U
- mountSecondaryButton,
" S9 s4 y" _9 l0 g3 _% w* _ - isSecondaryButtonMounted,
* A8 p$ @8 N& G: v: w8 m( [7 S - } from '@telegram-apps/sdk';# n3 R+ W* t" f- @- l" g4 G
- : p# \ P# Q. S# h! Y
- mountSecondaryButton();
g; k) Q8 M8 X) u% { - isSecondaryButtonMounted(); // true
复制代码
( o m& m! L8 |3 ~/ X/ F要卸载,请使用 unmount 方法: Variable : - secondaryButton.unmount();
. H1 y4 \8 p# K2 m# ? _$ u# z, X+ \ - secondaryButton.isMounted(); // false
复制代码Functions : - import {
$ _" F( r, F/ A - unmountSecondaryButton,
- X* N- ?) K M8 C9 ~ - isSecondaryButtonMounted,/ L3 ]9 k+ }, G$ L& m4 O$ g' B9 M) K
- } from '@telegram-apps/sdk';
& f; n& S+ O' X- K' c - * k& `; L) t5 H- A$ z
- unmountSecondaryButton();
+ @2 _7 C' g: ^+ h+ C* g" G - isSecondaryButtonMounted(); // false
复制代码WARNING 该组件的属性取决于 Mini App 和 Theme Params 组件的值。 具体来说,二级按钮使用 Mini App 的 bottomBarBgColor 和一些主题参数颜色。 在使用辅助按钮之前,请确保将这些组件安装到 。 设置属性要更新按钮属性,请使用 setParams 方法。 它接受一个带有可选 属性的对象,每个属性负责各自的按钮特性。 反过来,调用该方法会更新 ,如 backgroundColor, hasShineEffect, isVisible, isEnabled, isLoaderVisible, position, state, textColor 和 text。 Variable : - secondaryButton.setParams({
8 F5 B @, Z; s4 Y8 O - backgroundColor: '#000000',
& \4 R8 D) x, P; |) W, X - hasShineEffect: true,
7 L2 A' Q8 d5 |- Z - isEnabled: true,
: ]' P: m& t Q" P# A. @ - isLoaderVisible: true,
& I/ D4 I4 w0 X( w/ ]( g2 S+ X - isVisible: true,
- l- b: R5 f$ P" ]1 D: O - position: 'top',: o) f/ g. v* f0 S& R6 G
- text: 'My text',% p# h7 n5 M% ^9 J0 R
- textColor: '#ffffff'
) a% Y, |9 ^0 Z0 Q8 } - });
: E5 E# c# }# U2 y; t& d, n - secondaryButton.backgroundColor(); // '#000000'
, G1 n& f/ @0 D+ g: F: e - secondaryButton.hasShineEffect(); // true4 A2 A. B5 Y. z' b4 s9 A
- secondaryButton.isEnabled(); // true
" ]' ]0 f+ A& Q: T' E8 e - secondaryButton.isLoaderVisible(); // true! X. u) m. ^8 X. h/ k `
- secondaryButton.isVisible(); // true: T% n7 g3 B+ U" A
- secondaryButton.position(); // 'top'3 | Q& Q) `* f1 K( M
- secondaryButton.text(); // 'My text'
! F7 |" n/ w2 `+ h6 k# q - secondaryButton.textColor(); // '#ffffff'
5 q5 a' \$ H" Q/ e; I) f - ! z( r$ K B4 A% M* _2 G4 M
- secondaryButton.state();
5 ~& x4 U. ~! Y6 s! v+ U2 S - // {2 x2 L) ^3 F; U2 \$ | D8 k/ ?* H
- // backgroundColor: '#000000',+ [) I+ r, S% V# g) `. N
- // hasShineEffect: true,4 \! B9 L# [& [/ j t
- // isActive: true,
- j0 Y- D$ V* T* e: v# m' e7 ?1 y$ a - // isLoaderVisible: true,
2 u' m2 k* a/ {/ a! r( L - // isVisible: true,
! m; p) V. e" w$ u5 g3 l1 L( f - // position: 'top',
- N7 K) v r7 p% [! |5 r& M0 m. e( S7 { - // text: 'My text',
# a( o. ?" C: b( [ - // textColor: '#ffffff'
/ t9 u9 }+ r0 D2 ?9 P! Q7 d3 a - // }
复制代码Functions : - import {% h* G% l" [6 E
- setSecondaryButtonParams,7 a( X5 W' B# ? y
- secondaryButtonBackgroundColor,
+ `3 N3 b) N! |* e& q' T2 A3 X - secondaryButtonHasShineEffect,
5 Y8 O: t3 Q. O0 {3 J - isSecondaryButtonVisible,
6 K6 j8 E: a) i$ X2 B' d$ b# @ - isSecondaryButtonEnabled,
% Z) Z" G- e! w& L - isSecondaryButtonLoaderVisible,* l/ P5 o0 D+ l. k: [: s
- secondaryButtonState,
8 J' M- {+ N8 u( X - secondaryButtonTextColor,
( i9 X7 S" J7 u8 B - secondaryButtonText,
3 @( j" ~: u/ b2 W8 ~, P - secondaryButtonPosition,9 \1 b, \) U& ~$ W
- } from '@telegram-apps/sdk';
4 D% J4 u5 r8 V$ \- w - 9 e; w' J7 O0 g
- setSecondaryButtonParams({7 T- o- G8 t( |8 B; G, @7 S, [& `
- backgroundColor: '#000000',6 M8 `7 e; {! D
- hasShineEffect: true,; E# o% M% G" ?7 `
- isEnabled: true,
! p2 \/ {, C0 k1 y# w - isLoaderVisible: true,( T0 Q6 l0 x& k" D. j
- isVisible: true,: Z* y j- Y9 `4 s% \
- position: 'top',
$ h# `, r6 F2 O - text: 'My text',' r* T* }0 r% a2 p, k+ E) w) |
- textColor: '#ffffff'
# M ?' B' z& q/ V - });% j: E4 g; c& q; Z
- secondaryButtonBackgroundColor(); // '#000000'
4 ]* n* [# D) }) M - secondaryButtonHasShineEffect(); // true2 [5 \: C% W4 R# l* ?# O
- isSecondaryButtonEnabled(); // true# ^- w0 t; ~- _% ]
- isSecondaryButtonLoaderVisible(); // true
1 X# p7 U. ^2 t9 q( B. |# f6 S8 ]. n0 e - isSecondaryButtonVisible(); // true
0 |, B5 r; ?" K - secondaryButtonPosition(); // 'top'' d& C) F& C( }/ K9 M; S
- secondaryButtonText(); // 'My text'
! k' F# ~4 q4 M& _4 x% F. m! z - secondaryButtonTextColor(); // '#ffffff'
5 |: \; P4 E1 K
4 c5 G C+ M0 ?$ k- secondaryButtonState();8 R* i" g9 V: V( ]7 }- _- r
- // {) u' Z: J! [' ~5 i4 Z
- // backgroundColor: '#000000',
3 O: w# q& F7 v8 F! N) c - // hasShineEffect: true,/ G2 P N* `4 P7 K1 z- E6 s
- // isActive: true,3 N' l6 S& |* D; Q
- // isLoaderVisible: true,
5 Z4 W! @0 Z$ I- j: M- R - // isVisible: true,8 U# J- s! U' G/ P! K0 v# b$ @) t
- // position: 'top',
( R2 h5 H6 u; m1 |$ H1 V0 K5 z - // text: 'My text',$ m; U. ~% U/ L! v
- // textColor: '#ffffff'
+ |( V' i4 L* f8 K; h - // }
复制代码 跟踪点击要添加按钮点击监听器,请使用 onClick 方法。 它返回一个函数,用于移除绑定的 监听器。 或者,您也可以使用 offClick 方法。 Variable : - function listener() {
* @" X! Z) z7 a! c% R - console.log('Clicked!');6 `& c) J$ {/ l: c
- }
( Q" g# ^* b) L6 {4 c* V
9 U: d/ A1 O" W2 P0 `5 _! s0 S- const offClick = secondaryButton.onClick(listener);
4 ?1 r& `1 D; o' ? L - offClick();0 o$ n# K7 u1 H1 x( a+ ^: i
- // or
8 E# D" F( X% |2 q) x8 k# t6 } - secondaryButton.onClick(listener);( |1 N- Y5 V: v2 g n& f
- secondaryButton.offClick(listener);
复制代码Functions : - import {
: l u, H( `4 b/ y) A# M; ^ - onSecondaryButtonClick,
1 c/ ~+ {1 b- f: u - offSecondaryButtonClick,, `' l# ?: a7 u# B7 @. f, S* \
- } from '@telegram-apps/sdk';
6 k' J" v! J6 z" v a& }/ }
* @' J2 l& o- k8 n- function listener() {
@1 l+ q+ Y4 b& N, v - console.log('Clicked!');2 Q& S$ W4 j6 F6 x4 D8 b
- }7 t1 A* a5 H. S
* W7 H; z" f9 {- const offClick = onSecondaryButtonClick(listener);) c7 C. E$ p( i b
- offClick();
6 u0 x b: _. q+ {1 s; D/ }7 E - // or
7 T1 o& g( v& i! _9 O. X6 O- S+ w - onSecondaryButtonClick(listener);
( I8 \* L5 N) D" N& U) l2 ` - offSecondaryButtonClick(listener);
复制代码
. V4 [ C: Q. Z4 e- [0 n0 {3 ]" T" k8 W' C% J9 [ C7 ]
|