关闭行为 负责 Telegram Mini Apps 关闭行为 的💠组件。 安装在使用该组件之前,有必要将其安装到配置正确的 属性中。 为此,请使用 mount 方法。 它将更新 isMounted 信号属性。 Variable : - import { closingBehavior } from '@telegram-apps/sdk';, X9 i" D% n/ ~. D9 C+ D" P
: {# Z; p3 B- w, l/ v- closingBehavior.mount();! b+ n7 u+ s$ K
- closingBehavior.isMounted(); // true
复制代码Functions : - import {
7 K4 n9 X( Q* T- F; a; w. K' L. J - mountClosingBehavior,. V4 I( Z! n% r+ Z& H ?& y% ~9 q
- isClosingBehaviorMounted,
% _. Q+ v* ^) M# u2 T& _1 b. s2 V# I1 P& a - } from '@telegram-apps/sdk';, A! O4 I6 K" p l; j* N4 w0 ^( f
& m! x9 x# x4 P% ~. Z8 O- X- mountClosingBehavior();
( U& }" p) |6 G' l; e - isClosingBehaviorMounted(); // true
复制代码
2 `6 x* l8 G7 \ D7 I0 Z: o* l8 z要卸载,请使用 unmount 方法: Variable : - closingBehavior.unmount();
2 {5 k1 Y# l$ C' K+ p1 T0 L$ } - closingBehavior.isMounted(); // false
复制代码Functions : - import {. S' O- e7 B1 B5 K' K
- unmountClosingBehavior,2 t, l7 }, \# v- z0 O
- isClosingBehaviorMounted,- c! u) ~, l2 @
- } from '@telegram-apps/sdk';
2 q, o6 l. t$ v% V - + e) E% d$ ]- E) q1 t" e9 i# Q
- unmountClosingBehavior();
/ ^1 }5 A$ c/ w7 B+ J8 p - isClosingBehaviorMounted(); // false
复制代码 关闭确认要更改关闭确认行为,请使用 enableConfirmation() 和 disableConfirmation() 方法。 这些方法会更新 isConfirmationEnabled 信号 的属性值。 Variable : - closingBehavior.enableConfirmation();
! Q) M. o4 G" Y8 |& H0 M- Z - closingBehavior.isConfirmationEnabled(); // true$ h- @) y0 t4 H# u% j9 u
6 [# s# C4 E r) m- closingBehavior.disableConfirmation();
- L3 f2 F5 g; Z+ u - closingBehavior.isConfirmationEnabled(); // false
复制代码Functions : - import {
. ?/ d) p( O0 L' I( Q' M - enableClosingConfirmation,! c- f: J J4 C. C9 X% c3 ?, r
- disableClosingConfirmation,
- a; P5 u3 e9 L. @: i - } from '@telegram-apps/sdk';/ {" i+ |. g! R) H J( ]( t( R
8 v/ w$ ?, O3 d. K ^4 X+ m- enableClosingConfirmation();% }, I; S; z7 a- b5 t1 W
- isClosingConfirmationEnabled(); // true3 G( w5 e6 [% a
- 3 m( U9 g% b# q! V* i; D2 ?% r% I* s4 w
- disableClosingConfirmation();
2 V" I v! X, D/ w; y& K# Q/ P - isClosingConfirmationEnabled(); // false
复制代码
7 g I3 f G8 a) h' a
* e, v9 w5 y1 J0 H- k1 j, O5 A |