当前位置: 首页 > 工具软件 > umi > 使用案例 >

【Umi】history (API)

吴均
2023-12-01

history (API)

可用于获取当前路由信息

import { history } from 'umi';

// history 栈的实体个数
console.log(history.length);

// 当前 history 跳转的action, 有push/replace/pop 三种类型
console.log(history.action)

// location 对象,包含 pathname/search/hash
console.log(history.location.pathname)
console.log(history.location.search)
console.log(history.location.hash)

可用于路由跳转

import { history } from 'umi';

// 跳转到指定路由
history.push('/list')

// 带参数跳转到指定路由
history.push('/list?a=b')
history.push({
    pathname: '/list',
    query: {
        a: 'b'
    }
})

// 跳转到上一个路由
history.goBack();

可用于路由监听

import { history } from 'umi';

const unlisten = history.listen((location, action) => {
    console.log(location.pathname)
})
unlisten()
 类似资料: