吵架反应路由

时间:2017-07-13 11:16:15

标签: reactjs

当我尝试使用参数路由反应js时,浏览器抛出错误:'GET http://localhost:3000/store/build/main.js 123:24获取http://localhost:3000/store/build/main.js 404(未找到)' 并且不显示组件的内容, 否则(没有参数)它工作得很好, 可能是什么原因?

1 个答案:

答案 0 :(得分:0)

您必须在/之前放置main.js。所以你的代码必须看起来像这样:

<script src="/app.js"></script>

publicPath参数添加到webpack.config.js文件中:

output: {
    path: distPath,
    publicPath: '/',
    filename: 'js/[name].js'
}