关闭行为 负责 Telegram Mini Apps 关闭行为 的💠组件。 安装在使用该组件之前,有必要将其安装到配置正确的 属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { closingBehavior } from '@telegram-apps/sdk';5 c: V3 t. Q; S. b7 n2 D
4 s" N$ |: m( J/ C- K- closingBehavior.mount();3 V8 I5 s. C% K$ L( B' D
- closingBehavior.isMounted(); // true
复制代码Functions : - import {+ M1 A9 w/ a$ y: q& s; k
- mountClosingBehavior,0 t( q7 _ v+ ~2 l
- isClosingBehaviorMounted,
. Q4 f7 I) l8 X7 c - } from '@telegram-apps/sdk';" @, |2 e( S. b% y
; _0 D1 O# U. w5 t- mountClosingBehavior();
0 J/ y4 F$ D3 b7 o3 i4 b6 M) A; s - isClosingBehaviorMounted(); // true
复制代码 ( l) n4 d. R [3 q, ]( x# V( `% i
要卸载,请使用 unmount 方法: Variable : - closingBehavior.unmount();# k3 s: P7 @' d1 t+ {
- closingBehavior.isMounted(); // false
复制代码Functions : - import {
, X* b2 m4 D& n$ q8 ~; E+ l - unmountClosingBehavior,
: s0 f; ^5 X. p9 y# E: }" Q - isClosingBehaviorMounted,8 r7 J3 I1 C! Y' R: d
- } from '@telegram-apps/sdk';- C% E" t1 D) K8 Q( |
+ P1 S( B6 y0 M. x- l; q `- unmountClosingBehavior();
@9 E* A- R; a1 D. s6 e - isClosingBehaviorMounted(); // false
复制代码 关闭确认要更改关闭确认行为,请使用 enableConfirmation() 和 disableConfirmation() 方法。 这些方法会更新 isConfirmationEnabled 信号 的属性值。 Variable : - closingBehavior.enableConfirmation(); V: w# R @" F, m) I! f
- closingBehavior.isConfirmationEnabled(); // true
. H3 L8 I7 d. z1 { - # U3 O: D1 ^# H( e
- closingBehavior.disableConfirmation();
7 R" V' c4 G$ x# R4 b: L - closingBehavior.isConfirmationEnabled(); // false
复制代码Functions : - import {
: T- d+ y; J0 m6 ?1 P - enableClosingConfirmation,
8 W; j* p0 L+ Q4 I* E. g - disableClosingConfirmation,
) v/ g5 H% e& D# s% v - } from '@telegram-apps/sdk';
8 ?& m, o* z% n/ a% G& M - # z, J$ V- V: B/ d
- enableClosingConfirmation();
* y3 K# R `! [ z8 m! C - isClosingConfirmationEnabled(); // true, K- q. X1 q- Z6 A6 r
" b5 c& \9 h! q/ g& ^4 k1 p- disableClosingConfirmation();( j% U! ?/ k5 e
- isClosingConfirmationEnabled(); // false
复制代码
6 Q8 t7 o @! n4 A* J, O, {
3 q2 L n* D% q0 \ |