由于需求需要使用react当做介质来打开自己的应用超链接。
中途尝试过window.location方法但会有一个index.html页面的场景过渡,期望在react启动时便直接跳转至我的超链接,有没有好的办法实现?
也考虑过利用react-router来默认加载至超链接,但之前还没有使用过react不知思路是否可行。
由于需求需要使用react当做介质来打开自己的应用超链接。
中途尝试过window.location方法但会有一个index.html页面的场景过渡,期望在react启动时便直接跳转至我的超链接,有没有好的办法实现?
也考虑过利用react-router来默认加载至超链接,但之前还没有使用过react不知思路是否可行。
没那么复杂,在index.js
中的componentDidMount
生命周期中,直接使用window.location.href = 'xxx'
就可以了。
index.js
class App extends React.Component {
componentDidMount() {
window.location.href = 'xxxx';
}
render() {
return null;
}
}
ReactDOM.render(App, document.body);
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
肯定需要一个页面来做为启动页,没页面怎么启动程序