gpt4 book ai didi

javascript - React 应用程序中的语法错误。仅在第一次加载时

转载 作者:可可西里 更新时间:2023-11-01 12:55:33 24 4
gpt4 key购买 nike

我很难弄清楚这里的问题到底是什么。

每当我部署我的 React 应用程序的新版本时,我都会收到此错误:

SyntaxError: expected expression, got '<'

但是,问题的有趣部分是它只发生在第一次加载时。如果您在浏览器上按刷新,问题就会消失,并且在推出新版本之前不会再次发生。

根据我从其他堆栈溢出帖子中收集到的信息:

React firebase error after build and deploy SyntaxError: expected expression, got '<'

问题似乎出在 index.html 文件中,我正在其中加载一个 js 脚本,但正在加载 html,并且“<”字符引发错误。此外,我在开发时从未见过此错误,只有在构建和部署后才会出现。

我摸不着头脑,因为这个错误只发生在第一次加载时。

这是我的 index.html 文件:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png">
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-16x16.png" sizes="16x16">
<link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#5bbad5">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet/less" type="text/css" href="/color.less" >
<meta name="theme-color" content="#ffffff">
<title>Kirs</title>

<script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',intercomSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Intercom=i;function l(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/w1ycmr5d';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})()</script>
<script src="https://js.stripe.com/v3/"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=omitted&libraries=places"></script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
</body>
</html>

我使用 netlify 来部署我的应用程序,如果这有什么不同的话。

netlify.toml:

# Global settings applied to the whole site.
# “base” is directory to change to before starting build, and
# “publish” is the directory to publish (relative to root of your repo).
# “command” is your build command.

[build]
base = ""
publish = "build"
command = "REACT_APP_STAGE=dev npm run build"

# Production context: All deploys to the main
# repository branch will inherit these settings.
[context.production]
command = "REACT_APP_STAGE=prod npm run build"

# Deploy Preview context: All Deploy Previews
# will inherit these settings.
[context.deploy-preview]
command = "REACT_APP_STAGE=dev npm run build"

# Branch Deploy context: All deploys that are not in
# an active Deploy Preview will inherit these settings.
[context.branch-deploy]
command = "REACT_APP_STAGE=dev npm run build"

# Always redirect any request to our index.html
# and return the status code 200.
[[redirects]]
from = "/*"
to = "/index.html"
status = 200

感谢您的帮助!

最佳答案

我认为问题是缓存 + 一些不存在的脚本文件。

1) 如果缺少本地脚本文件,它可能会将其作为常规 React 应用程序请求来处理,并返回以 <!DOCTYPE html> 开头的内容,为什么在尝试将响应解析为 JS 时出现 SyntaxError。

2) 此外,我认为它与缓存应用程序的某些部分有关。可能在您的部署中删除了旧文件,但应用程序仍在寻找具有一些先前哈希值的旧文件:main.XXXXX.js。但是在部署期间,您完全删除了这些文件并上传了新脚本:main.YYYYYY.js。

检查开发人员工具,确保所有脚本都返回预期的 JS 文件响应,如果其中任何一个丢失,请对您的缓存 header 和/或部署脚本进行适当的更改。

关于javascript - React 应用程序中的语法错误。仅在第一次加载时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53106643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com