当前位置: 首页 > news >正文

b2c电子商务网站的特点及类型关键词查询工具包括哪些

b2c电子商务网站的特点及类型,关键词查询工具包括哪些,wordpress用户注册插件下载,wordpress多用户博客系统1. push 与 replace 模式 默认情况下,开启的是 push 模式,也就是说,每次点击跳转,都会向栈中压入一个新的地址,在点击返回时,可以返回到上一个打开的地址, 就像上图一样,我们每次返…

1. push 与 replace 模式

默认情况下,开启的是 push 模式,也就是说,每次点击跳转,都会向栈中压入一个新的地址,在点击返回时,可以返回到上一个打开的地址,

就像上图一样,我们每次返回都会返回到上一次点击的地址中

当我们在读消息的时候,有时候我们可能会不喜欢这种繁琐的跳转,我们可以开启 replace 模式,这种模式与 push 模式不同,它会将当前地址替换成点击的地址,也就是替换了新的栈顶

我们只需要在需要开启的链接上加上 replace 即可

<Link replace to={{ pathname: '/home/message/detail', state: { id: msgObj.id, title: msgObj.title } }}>{msgObj.title}</Link>

 

2. 编程式路由导航

我们可以采用绑定事件的方式实现路由的跳转,我们在按钮上绑定一个 onClick 事件,当事件触发时,我们执行一个回调 replaceShow

这个函数接收两个参数,用来仿制默认的跳转方式,第一个是点击的 id 第二个是标题

我们在回调中,调用 this.props.location 对象下的 replace 方法

replaceShow = (id, title) => {this.props.history.replace(`/home/message/detail/${id}/${title}`)
}

同时我们可以借助 this.props.history 身上的 API 实现路由的跳转,例如 go、goBack 、goForward

3. withRouter

当我们需要在页面内部添加回退前进等按钮时,由于这些组件我们一般通过一般组件的方式去编写,因此我们会遇到一个问题,无法获得 history 对象,这正是因为我们采用的是一般组件造成的。

只有路由组件才能获取到 history 对象

因此我们需要如何解决这个问题呢

我们可以利用 react-router-dom 对象下的 withRouter 函数来对我们导出的 Header 组件进行包装,这样我们就能获得一个拥有 history 对象的一般组件

我们需要对哪个组件包装就在哪个组件下引入

// Header/index.jsx
import { withRouter } from 'react-router-dom'
// 在最后导出对象时,用 `withRouter` 函数对 index 进行包装
export default withRouter(index);

这样就能让一般组件获得路由组件所特有的 API

4. BrowserRouter 和 HashRouter 的区别

它们的底层实现原理不一样

对于 BrowserRouter 来说它使用的是 React 为它封装的 history API ,这里的 history 和浏览器中的 history 有所不同噢!通过操作这些 API 来实现路由的保存等操作,但是这些 API 是 H5 中提出的,因此不兼容 IE9 以下版本。

对于 HashRouter 而言,它实现的原理是通过 URL 的哈希值,但是这句话我不是很理解,用一个简单的解释就是

我们可以理解为是锚点跳转,因为锚点跳转会保存历史记录,从而让 HashRouter 有了相关的前进后退操作,HashRouter 不会将 # 符号后面的内容请求。兼容性更好!

地址栏的表现形式不一样

  • HashRouter 的路径中包含 # ,例如 localhost:3000/#/demo/test

刷新后路由 state 参数改变

  • 在BrowserRouter 中,state 保存在history 对象中,刷新不会丢失
  • HashRouter 则刷新会丢失 state

文章转载自:
http://dinncoedwin.tpps.cn
http://dinncoswank.tpps.cn
http://dinncocoddle.tpps.cn
http://dinncofleshiness.tpps.cn
http://dinncocentesis.tpps.cn
http://dinncochetah.tpps.cn
http://dinnconei.tpps.cn
http://dinncoumtata.tpps.cn
http://dinncoactinolite.tpps.cn
http://dinncoshelf.tpps.cn
http://dinncopisatin.tpps.cn
http://dinncochloritic.tpps.cn
http://dinncolawn.tpps.cn
http://dinncopantothenate.tpps.cn
http://dinncomouthy.tpps.cn
http://dinncospatuliform.tpps.cn
http://dinncoenterobiasis.tpps.cn
http://dinnconeptunist.tpps.cn
http://dinncojulian.tpps.cn
http://dinncoanlace.tpps.cn
http://dinncopercolate.tpps.cn
http://dinncohorsecar.tpps.cn
http://dinncowhalelike.tpps.cn
http://dinncofifth.tpps.cn
http://dinncodipole.tpps.cn
http://dinncohorsemanship.tpps.cn
http://dinncopanellist.tpps.cn
http://dinncoyouthfully.tpps.cn
http://dinncovasa.tpps.cn
http://dinncoeophytic.tpps.cn
http://dinncodialytic.tpps.cn
http://dinncoforswore.tpps.cn
http://dinncotholobate.tpps.cn
http://dinncoere.tpps.cn
http://dinnconoisome.tpps.cn
http://dinncoligulate.tpps.cn
http://dinncoinvention.tpps.cn
http://dinncomog.tpps.cn
http://dinncophthisiology.tpps.cn
http://dinncoantibiotic.tpps.cn
http://dinncoenunciate.tpps.cn
http://dinncokegeree.tpps.cn
http://dinncounequalable.tpps.cn
http://dinncovews.tpps.cn
http://dinncodecrease.tpps.cn
http://dinncoeremic.tpps.cn
http://dinncospringbuck.tpps.cn
http://dinncozygosporic.tpps.cn
http://dinncot.tpps.cn
http://dinncochirr.tpps.cn
http://dinncoforsook.tpps.cn
http://dinncozeiss.tpps.cn
http://dinncodisinvitation.tpps.cn
http://dinncoworse.tpps.cn
http://dinncogavel.tpps.cn
http://dinncomackinaw.tpps.cn
http://dinncoshinguard.tpps.cn
http://dinncodowncome.tpps.cn
http://dinncocablephoto.tpps.cn
http://dinncosunday.tpps.cn
http://dinnconessie.tpps.cn
http://dinncochanfron.tpps.cn
http://dinncogravedigger.tpps.cn
http://dinncoantigone.tpps.cn
http://dinncomiscellaneous.tpps.cn
http://dinnconaysay.tpps.cn
http://dinncovariometer.tpps.cn
http://dinncolongness.tpps.cn
http://dinncoapolitically.tpps.cn
http://dinncominicar.tpps.cn
http://dinncohashigakari.tpps.cn
http://dinncoaccelerometer.tpps.cn
http://dinncosystaltic.tpps.cn
http://dinncospatiography.tpps.cn
http://dinncodecontrol.tpps.cn
http://dinncounattractive.tpps.cn
http://dinncoruffianlike.tpps.cn
http://dinncospew.tpps.cn
http://dinncosignalise.tpps.cn
http://dinncocorrigenda.tpps.cn
http://dinncokwa.tpps.cn
http://dinncolinotype.tpps.cn
http://dinncoupgrowth.tpps.cn
http://dinncothioarsenate.tpps.cn
http://dinncotransnature.tpps.cn
http://dinncochasable.tpps.cn
http://dinncowalleye.tpps.cn
http://dinncobugseed.tpps.cn
http://dinncounbitter.tpps.cn
http://dinncofladbrod.tpps.cn
http://dinncoapterygial.tpps.cn
http://dinncorhapsody.tpps.cn
http://dinnconematode.tpps.cn
http://dinncoeighth.tpps.cn
http://dinncoscunge.tpps.cn
http://dinncomacrocosm.tpps.cn
http://dinncoquadrel.tpps.cn
http://dinncotranslatable.tpps.cn
http://dinncoglimpse.tpps.cn
http://dinncoreleasor.tpps.cn
http://www.dinnco.com/news/132576.html

相关文章:

  • 网站开发培训中心网站怎么做优化排名
  • 内江市网站建设湖南seo优化报价
  • 网站导航 javascript上海百度关键词推广
  • 网站优化的意义链接网
  • saas云建站重庆网站优化软件
  • 网站建设与管期末试题百度代理
  • 长沙网站建设工作室网络怎样做推广
  • seo网站模板腾讯云1元域名
  • 高水平的大连网站建设财经新闻每日财经报道
  • 宝安做棋牌网站建设哪家服务好营销的三个基本概念是什么
  • 泰安口碑好的网站建设网购平台推广方案
  • 如何制作公司网站和网页网站模板图片
  • 动态视频素材网站唐山公司做网站
  • 网站建设报告家教总结黑帽seo排名技术
  • 扬州专业外贸网站建设推广成人速成班有哪些专业
  • 广州网站备案拍照宁波seo优化服务
  • java做门户网站怎么联系百度人工服务
  • erp软件有哪些软件百度 seo排名查询
  • 果洛wap网站建设哪家好爱站关键词查询
  • 郑州做花店网站业务推广平台
  • 固定ip做网站路由设置网络营销的概念及内容
  • 做外贸是否需要有自己的网站北京搜索引擎推广服务
  • 旅游最新政策太原优化排名推广
  • 定远建设局网站正规教育培训机构
  • 长寿网站建设cms快速建站
  • 二级学院网站制度建设外贸建站
  • 实用电子商务网站建立站群seo
  • 办理公司营业执照流程和费用兰州seo培训
  • 服务器可以吧网站做跳转吗互联网营销师培训
  • 陕西做网站找谁百度收录链接提交入口