push
跳转路由界面
history.pushState({url : 'pages/detail/detail', query: JSON.parseObject(`{"id":"123456"}`)});
replace
替换当前页面,换为路由界面
history.replaceState({url : 'pages/detail/detail', query: JSON.parseObject(`{"id":"123456"}`)});
goBack
返回上一页
history.goBack();
go(N)
返回前N页
history.go(-2);