我在我的项目中使用react,react-router-dom和express。当我通过点击链接发送请求时一切正常但如果我通过浏览器发送请求它不起作用。但是,对于http://localhost:8000/
或http://localhost:8000/admin
等浏览器中的某些请求效果很好,但对于http://localhost:8000/admin/users
或http://localhost:8000/admin/account
等某些请求效果不佳。
浏览器中的错误说:
bundle.js:1 Uncaught SyntaxError: Unexpected token <
并且它指向
答案 0 :(得分:0)
我找到了编辑<script src="/bundle.js"></script>
时需要的解决方案。我已将bundle.js
编辑为/bundle.js
。