博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Preact] Integrate react-router with Preact
阅读量:6285 次
发布时间:2019-06-22

本文共 2099 字,大约阅读时间需要 6 分钟。

React-router is the community favourite routing solution - it can handle all of your complex routing needs and in this lesson we’ll cover what’s needed to enable it’s use within Preact. 

 

in webpack.config.js:

resolve: {        alias: {            'react': 'preact-compat',            'react-deom': 'preact-compat'        }    },

Add resolve block. it alias 'react' to use 'preact-compat'.

 

Change Route definations.

import {h} from 'preact';import { BrowserRouter as Router, Switch, Route } from 'react-router-dom';import Profile from './Profile';import Home from './Home';import Error from './Error';export default function App() {    return (        
);}

Using 'Switch' to allow only one component showing at a time.

 

Dealing with navigation:

import { h } from 'preact';import {withRouter} from 'react-router-dom';function search(router, query) {    router.history.push(`/profile/${encodeURIComponent(query)}`);}const Home = withRouter((router) => {    return (        

Enter a Github Username

search(router, e.target.value)} />
);});export default Home;

We can use High Order component 'withRouter', it inject 'router' param into our component, then we can use:

router.history.push(`/profile/${encodeURIComponent(query)}`);

to nav around.

 

Get router params:

componentDidMount() {        const username = this.props.match.params.user;        fetch(`${config.url}/${username}`)            .then(resp => resp.json())            .then(user => {                this.setState({                                  user,                                  loading: false                              });            })            .catch(err => console.error(err));    }

You can get the router param by using:

const username = this.props.match.params.user;

 

Link tag:

import {h} from 'preact';import {Link} from 'react-router-dom';export default Error = () => (    

Error!

Home
);

 

转载地址:http://osxva.baihongyu.com/

你可能感兴趣的文章
《Exchange Server 2010 SP1/SP2管理实践》——2.4 部署外部网络环境
查看>>
Firefox 是 Pwn2own 2014 上攻陷次数最多的浏览器
查看>>
阿里感悟(十八)- 应届生Review
查看>>
《计算广告:互联网商业变现的市场与技术》一第一部分 在线广告市场与背景...
查看>>
话说模式匹配(5) for表达式中的模式匹配
查看>>
《锋利的SQL(第2版)》——1.7 常用函数
查看>>
《Arduino家居安全系统构建实战》——1.5 介绍用于机器学习的F
查看>>
jquery中hover()的用法。简单粗暴
查看>>
线程管理(六)等待线程的终结
查看>>
spring boot集成mongodb最简单版
查看>>
DELL EqualLogic PS存储数据恢复全过程整理
查看>>
《Node.js入门经典》一2.3 安装模块
查看>>
《Java 开发从入门到精通》—— 2.5 技术解惑
查看>>
Linux 性能诊断 perf使用指南
查看>>
实操分享:看看小白我如何第一次搭建阿里云windows服务器(Tomcat+Mysql)
查看>>
Sphinx 配置文件说明
查看>>
数据结构实践——顺序表应用
查看>>
python2.7 之centos7 安装 pip, Scrapy
查看>>
机智云开源框架初始化顺序
查看>>
Spark修炼之道(进阶篇)——Spark入门到精通:第五节 Spark编程模型(二)
查看>>