当我尝试使用参数路由反应js时,浏览器抛出错误:'GET http://localhost:3000/store/build/main.js 123:24获取http://localhost:3000/store/build/main.js 404(未找到)' 并且不显示组件的内容, 否则(没有参数)它工作得很好, 可能是什么原因?
答案 0 :(得分:0)
您必须在/
之前放置main.js
。所以你的代码必须看起来像这样:
<script src="/app.js"></script>
将publicPath
参数添加到webpack.config.js
文件中:
output: {
path: distPath,
publicPath: '/',
filename: 'js/[name].js'
}