1 Uncaught SyntaxError: Unexpected end of JSON input
1 Uncaught SyntaxError: Unexpected end of JSON input
我有一个随机抛出此 JavaScript 错误的网站。如果您刷新网站,它几乎总是会发生,并且会阻止网站加载。相反,您只会看到一个空白的白页。
控制台指出第 8 行的 require.js 中有一个 "Uncaught SyntaxError: Unexpected end of JSON input"。该行显示:
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
这条线有什么我没看到的问题吗?
Chrome console output
Firefox console output
define("lib/config", [], function() {
"use strict";
var e = document.getElementById("app-config");
return e ? JSON.parse(e.innerHTML) : {}
})
那是有问题的代码部分。在执行此部分之前,并不总是加载 app-config 元素。如果可能,将您的应用程序配置硬编码到您的 html
我有一个随机抛出此 JavaScript 错误的网站。如果您刷新网站,它几乎总是会发生,并且会阻止网站加载。相反,您只会看到一个空白的白页。
控制台指出第 8 行的 require.js 中有一个 "Uncaught SyntaxError: Unexpected end of JSON input"。该行显示:
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
这条线有什么我没看到的问题吗?
Chrome console output
Firefox console output
define("lib/config", [], function() {
"use strict";
var e = document.getElementById("app-config");
return e ? JSON.parse(e.innerHTML) : {}
})
那是有问题的代码部分。在执行此部分之前,并不总是加载 app-config 元素。如果可能,将您的应用程序配置硬编码到您的 html