gpt4 book ai didi

html - gh-pages : can not link to local files 上的 React 应用程序

转载 作者:行者123 更新时间:2023-11-28 00:42:53 25 4
gpt4 key购买 nike

如果我创建一个 React 应用程序,并且在这个应用程序中有一个指向本地 html 文件的链接,一旦这个应用程序发布在 gh-pages 上,由于某些原因,该链接不会指向任何地方,它只是将用户重定向到他在点击链接之前所在的同一页面。

例如:

如果我像这样使用 CRA 创建一个简单的应用程序:

App.js

import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';

class App extends Component {
render() {
return (
<div className="App">
I'm the homepage
<a id='testlink' href='html2.html'> Go to the second page </a>
</div>
);
}
}

export default App;

然后在公共(public)文件夹中我创建了一个新的 html 文件“html2.html”,上面写着

I am the second app !

就是这样,一个简单的应用程序应该在单击链接时从 index.html 跳转到 html2.html。这个应用程序在使用 npm start 测试时工作正常,如果通过 npm run build 提供的静态 html 文件启动它工作正常,但是当部署在 gh-pages 上时,突然该链接不会指向任何地方。

Here is the app described above deployed on ghpages

这个问题的一个解决方法是在 gh-pages 上单独上传所有应用程序,或者使用 react router,但我想知道我是否只是遗漏了什么。感谢您的帮助。

最佳答案

关于 React你应该使用的项目react-router处理路由和改变页面。

简单的例子:

import React from "react";
import { BrowserRouter as Router, Route, Link } from "react-router-dom";

const BasicExample = () => (
<Router>
<div>
<ul>
<li>
<Link to="/">Home</Link>
</li>
<li>
<Link to="/about">About</Link>
</li>
<li>
<Link to="/topics">Topics</Link>
</li>
</ul>

<hr />

<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
<Route path="/topics" component={Topics} />
</div>
</Router>
);

const Home = () => (
<div>
<h2>Home</h2>
</div>
);

const About = () => (
<div>
<h2>About</h2>
</div>
);

const Topics = ({ match }) => (
<div>
<h2>Topics</h2>
<ul>
<li>
<Link to={`${match.url}/rendering`}>Rendering with React</Link>
</li>
<li>
<Link to={`${match.url}/components`}>Components</Link>
</li>
<li>
<Link to={`${match.url}/props-v-state`}>Props v. State</Link>
</li>
</ul>

<Route path={`${match.url}/:topicId`} component={Topic} />
<Route
exact
path={match.url}
render={() => <h3>Please select a topic.</h3>}
/>
</div>
);

const Topic = ({ match }) => (
<div>
<h3>{match.params.topicId}</h3>
</div>
);

export default BasicExample;

关于html - gh-pages : can not link to local files 上的 React 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52367958/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com