我很反应react.js(使用preact)并遇到异步路由问题(preact-async-router)。
我的main.js:
import { h, render } from 'preact';
import {Router, Route} from 'preact-router';
import AsyncRoute from 'preact-async-route';
import Home from './components/home.jsx';
/** @jsx h */
function getHelloWorld(){
return System.import('./components/hello.jsx').then(module => module.default);
}
render(
<Router>
<Route path="/" component={Home} />
<AsyncRoute path="/hello/:foo" component={getHelloWorld}
loading={()=>{alert("loading...");}} />
</Router>
, document.getElementById("app")
);
我的home.jsx:
import {h, Component} from 'preact';
import {Link} from 'preact-router';
/** @jsx h */
export default class Home extends Component {
render() {
return <h1>
This is home page<br/>
<Link href='/hello/Earth'>Earth</Link>
</h1>;
}
}
我的hello.jsx:
import {h, render, Component} from 'preact';
/** @jsx h */
export default class Hello extends Component {
render() {
return <h1>Hello {this.props.matches.foo}!</h1>
}
}
Webpack创建了bundle.js和1.bundle.js(用于hello.jsx)!
所有在我的资源中 - 目录(资源目录是通过express.static可用)。
home.jsx已加载,链接指向(localhost / hello / Earth)。
现在的问题是1.bundle.js没有加载! 浏览器(bundle.js)请求“/hello/1.bundle.js”下的文件而不是“/resources/1.bundle.js”下的文件!
我该如何解决?
编辑:
现在有效。在我的webpack配置中添加了带有“/ resources /”的“publicPath”。谢谢!