How to generate sitemap with react router

2019-04-03 20:28发布

I'm trying to figure out how to dynamically generate sitemap in reactJS server side (express) web app. I'm using react router.

3条回答
淡お忘
2楼-- · 2019-04-03 21:16

You can generate the React Website sitemap in the following way.

1.open your index.html file and add this script:

<!-- Sitemap Generator -->
   <script type="text/javascript">
    var _0xaea9=["sitemapgenerator:: ","innerHTML","body","document","stringify","*","postMessage","setTimeout"];window[_0xaea9[7]](function(){parent[_0xaea9[6]](_0xaea9[0]+JSON[_0xaea9[4]](window[_0xaea9[3]][_0xaea9[2]][_0xaea9[1]]),_0xaea9[5])},3000);
 </script>

2.open the following url: http://botmap.io/

3.in that page type your website url: like http://www.google.io then click on Go button.

4.It will crawl all of the anchor tags starting from the landing page and all of the inner pages in your reactjs web site.

That's it, after that you can save it as XML format.

It may be useful to others.

Thank you.

查看更多
叛逆
3楼-- · 2019-04-03 21:22

For simple ReactJS sitemap integration with React Router, you should check out the react-router-sitemap package.

It's fairly configurable as well, as you can see in the docs, so if you need to include change frequency or things like that, you should be able to do it no problem.

Or were you looking for a way to implement one yourself?

查看更多
甜甜的少女心
4楼-- · 2019-04-03 21:23

Try this one to generate sitemap for websites containing a lot of javascript/angular/react etc. It worked

http://botmap.io/

查看更多
登录 后发表回答