设置按钮 负责 Telegram Mini Apps settings button 的💠组件。 检查支持要检查当前 Telegram 迷你应用程序版本是否支持设置按钮,可使用 isSupported 方法: Variable : - import { settingsButton } from '@telegram-apps/sdk';% \6 i# w$ ?1 D$ s# R
- c; m8 J1 f% j2 S- a- settingsButton.isSupported(); // boolean
复制代码Functions : - import { isSettingsButtonSupported } from '@telegram-apps/sdk';
# \) D& X( f. n3 Q1 B+ h' H - ' ~% y! c1 _3 k2 X/ U7 c$ i
- isSettingsButtonSupported(); // boolean
复制代码 安装在使用该组件之前,有必要将其安装到正确配置的属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { settingsButton } from '@telegram-apps/sdk';
; \) w2 a2 s1 `: S - 4 L( f% k3 `/ f
- settingsButton.mount();
& R# |: t% N3 U - settingsButton.isMounted(); // true
复制代码Functions : - import {
2 v0 z4 _' p. V, M7 } - mountSettingsButton,
6 E' m4 w+ F% y3 C - isSettingsButtonMounted,' s! Y/ S. D. ^/ f! W4 ^
- } from '@telegram-apps/sdk';8 Z% C2 U4 ~4 P: u
& k8 @* d1 |& R+ I- mountSettingsButton();+ `, U4 i- R* e0 N; J) T
- isSettingsButtonMounted(); // true
复制代码
. M) U! |6 Z; U4 t1 u2 L要卸载,请使用 unmount 方法: Variable : - settingsButton.unmount();
& J6 |9 z! F( W' h& r! k - settingsButton.isMounted(); // false
复制代码Functions : - import {
- V; a; O6 x! N- \ - unmountSettingsButton,9 l7 u$ H4 d8 k4 J/ t
- isSettingsButtonMounted,
0 y1 [2 o/ T3 t' B - } from '@telegram-apps/sdk';
: \- L! r9 |5 @0 F/ O0 e - i, o$ G: j- |! ^# P K
- unmountSettingsButton();9 C) q: u' f1 @3 E3 }1 |4 [$ Z
- isSettingsButtonMounted(); // false
复制代码 展示与隐藏要更改按钮的可见性,请使用 hide() 和 show() 方法。 这些方法会更新 isVisible 信号属性值。 Variable : - settingsButton.show();
2 F; D* |1 A2 b% s* J - settingsButton.isVisible(); // true
: f; t2 j" f6 U1 P, \8 ? - 2 I3 [* }5 A& C Z, q# w
- settingsButton.hide();
3 K! H( {# ~: P2 v$ h/ D3 |5 K - settingsButton.isVisible(); // false
复制代码Functions : - import {
7 c0 T9 V: Z- V M' F. n - showSettingsButton,- Y/ b& R# G7 Z1 o; v
- hideSettingsButton,9 a: O- O0 g. j: D" k
- isSettingsButtonVisible,
$ L6 l" E/ t6 | - } from '@telegram-apps/sdk';
* U( F9 K! T. C% z- C5 M* @3 g - i( `3 n8 V+ M7 R# ?0 e f2 F
- showSettingsButton();% ~2 h0 ]# K0 n+ V7 h
- isSettingsButtonVisible(); // true$ q" _* F( n$ n
- ! [0 ]- ~& G5 p C+ j
- hideSettingsButton();
. v# b0 O/ k; `, i. N! A - isSettingsButtonVisible(); // false
复制代码 跟踪点击要添加按钮点击监听器,请使用 onClick 方法。 它返回一个函数,用于移除绑定的 监听器。 或者,您也可以使用 offClick 方法。 Variable : - function listener() {( W+ {; ?, u5 j, ^' ^8 t
- console.log('Clicked!');$ {1 |( j+ ]) S' d, h/ N0 E
- }) w6 ?+ ~0 v- }+ I' u2 y( |
- ' y; {6 t! c, c" U) |( {0 u
- const offClick = settingsButton.onClick(listener);5 @1 R) ` x9 |; H7 s
- offClick();: R* e) ~1 ]/ r. N9 W* |( j& J
- // or" b; j8 [: X L) u# G
- settingsButton.onClick(listener);
8 x; w m t: ^# J. o - settingsButton.offClick(listener);
复制代码Functions : - import { onSettingsButtonClick, offSettingsButtonClick } from '@telegram-apps/sdk';: P; v2 `" G- ]: Q1 \% h! Z" M0 q
( x, W6 Q9 a% p5 E+ k5 Q5 s! a8 b- function listener() {! @& Q/ c/ N- s: p8 P/ w4 d
- console.log('Clicked!');2 |+ V, A' ]* C7 y
- }- W7 ]. `# U& U) P( ^* N6 t6 Q
- ' i4 W5 B8 i2 w7 `3 X3 i# S$ J
- const offClick = onSettingsButtonClick(listener);
. [' T, I2 G5 v% G - offClick();$ h7 P/ X: L5 _" w1 `! E
- // or
7 H4 q( v/ e# I - onSettingsButtonClick(listener);
1 K+ Q- c# i* I7 y8 L( k6 F0 O - offSettingsButtonClick(listener);
复制代码 ; i& n3 w+ G9 z9 I+ h' a
7 J" {5 L8 n$ ^1 l: n
|