English 简体中文 繁體中文 한국 사람 日本語 Deutsch русский بالعربية TÜRKÇE português คนไทย french

简体中文 繁體中文 English 日本語 Deutsch 한국 사람 بالعربية TÜRKÇE คนไทย Français русский

回答

收藏

Telegram 小程序 | TypeScript @telegram-apps/solid-router-integration

开源社区 开源社区 9703 人阅读 | 0 人回复 | 2025-02-25

Telegram Mini Apps Navigator@solidjs/router 的集成 。

( T  q7 V( s/ u2 {
安装
) ]4 J  @$ [' Spnpm :
) Z+ {9 l4 y: f
  1. pnpm i @telegram-apps/solid-router-integration
复制代码
npm :; N, z( r/ ^6 |& s( @
  1. npm i @telegram-apps/solid-router-integration
复制代码
yarn :& y4 |. ~" D, a! k
  1. yarn add @telegram-apps/solid-router-integration
复制代码
使用方法

目前,该软件包只提供了一个函数,用于创建 @solidjs/router 路由器的集成 - createRouter。

下面是它的使用方法:

  1. import { Routes, Route, Navigate } from '@solidjs/router';7 w9 n$ i/ R3 V. R
  2. import { onCleanup } from 'solid-js';. k  X" X) I7 E: A! ?$ I
  3. import { initNavigator } from '@telegram-apps/sdk-solid';
    5 f6 y4 |0 o$ D1 p4 k' G' D% B
  4. import { createRouter } from '@telegram-apps/solid-router-integration';  s9 p3 e/ ~0 i0 `& q
  5. . P) V  M3 W8 y7 [, O
  6. import { IndexPage } from './IndexPage.js';$ B* ^8 T" x7 r, @
  7. ) Z+ w1 i# i  b/ p/ J
  8. function App() {' ~) C7 J4 ]: l4 f$ S
  9.   // We should create navigator to pass it to integration creation.( k" S. u( U* g$ Z2 M2 p
  10.   const navigator = initNavigator('app-navigator-state');- n& I) I+ d  l* {2 ]/ C8 \6 q
  11. 6 ]; d6 U3 Y: h
  12.   // Then, to allow this navigator update current browser history, : x+ ~5 `" J/ [2 `
  13.   // we should attach it. Otherwise, it will work in memory mode.7 G/ D8 S) m& R
  14.   void navigator.attach();4 {2 O1 B' V7 K! C. d. S
  15.   onCleanup(() => {: w  F0 l" q# V% u4 P5 @7 s
  16.     navigator.detach();% }' E# ]! U1 h* t  ^3 [
  17.   });
    0 Z- k. A8 N" J( n

  18. . \% d' x( Z7 ?4 x; H" b8 u
  19.   const Router = createRouter(navigator);8 D" J2 }7 D) y; g* C! m/ {  M

  20. 5 _9 R% I9 @. N/ y( o8 [
  21.   return (
    9 s# Z# l* G) o& b
  22.     <Router>
    , h% i, y/ n* `( P. i/ ^
  23.       <Routes>
    9 N1 `: b/ G# k
  24.         <Route path={'/'} component={IndexPage}/>! R) ]& ?' _. J( A
  25.         <Route path={'*'} element={<Navigate href={'/'}/>}/>; f* d  C. m; L6 O& M8 _( f
  26.       </Routes>+ w( E# n$ }4 ]" f5 v) i: I, y! T
  27.     </Router>' T! H8 J* t! ^: d
  28.   );
    / c3 j# a% u% L2 C
  29. }
复制代码

您可以通过 我们的 Solid 模板 了解更多有关如何使用它的实际应用。


# e1 C0 C8 }' P9 z+ `- S5 W5 T1 I
2 Z9 k9 y5 [1 U. D$ x* R
9 r; ~; k/ b, e0 l* ^9 t, ^
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则