react学习(64)--简单的锚点封装

Posted 小歌谣(公众号同名)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react学习(64)--简单的锚点封装相关的知识,希望对你有一定的参考价值。

  render() {
    const {
      anchors = [], //锚点数组,link-节点id,title-显示文字
      content, //左侧内容
    } = this.props;
    return (
      <div style={{ display: 'flex' }}>
        <div style={{ flex: 9, overflow: 'hidden' }}>{content || this.props.children}</div>
        <div style={{ flex: 1 }}>
          <Anchor offsetTop={122} style={{ marginLeft: 24, background: '#F2F0F5' }}>
            {anchors.map((anchor, index) => (
              <Link href={anchor.link} key={index} title={anchor.title} />
            ))}
          </Anchor>
        </div>
      </div>
    );
  }

以上是关于react学习(64)--简单的锚点封装的主要内容,如果未能解决你的问题,请参考以下文章

URL中的锚点(fragment片段标识符)是什么?(hash mark(#))(HTML 页面内定位)(之前学html不是学了吗?忘啦?)(SEO 搜索引擎优化)

React SPA 应用 hash 路由如何使用锚点

使用带有 react-router 的锚点

React SPA 中的锚点或按钮?

使用带反应路由器的锚点

AR应用中的锚点检测问题