5

ときどき、Web サイトを 5 回に 1 回読み込むと、Web サイトの読み込みに失敗し、IE 9 コンソールに次のように表示されます。

SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined 
require.js, line 929 character 25
SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined 
require.js, line 929 character 25
SCRIPT5007: Unable to get value of the property 'extend': object is null or undefined 
Module.js?ts=@@timestamp, line 52 character 3
SCRIPT5007: Unable to get value of the property 'normalize': object is null or undefined 
require.js, line 929 character 25
SCRIPT5007: Unable to get value of the property 'View': object is null or undefined 
View.js?ts=@@timestamp, line 8 character 3
SCRIPT5007: Unable to set value of the property 'Validation': object is null or undefined 
backbone.validation.js?ts=@@timestamp, line 15 character 3
SCRIPT5007: Unable to get value of the property 'extend': object is null or undefined 
Class.js?ts=@@timestamp, line 10 character 3
SCRIPT5007: Object expected 
hbs.js?ts=@@timestamp, line 143 character 15
SCRIPT5007: Object expected 
hbs.js?ts=@@timestamp, line 143 character 15
SCRIPT5007: Object expected 
hbs.js?ts=@@timestamp, line 143 character 15
SCRIPT5022: Load timeout for modules: css!lib/foundation/style_unnormalized2,css!lib/icon-font/fontcustom_unnormalized3,css!lib/icon-font/icon-font_unnormalized4,hbs!modules/header/HeaderTemplate_unnormalized5,css!modules/header/HeaderStyle_unnormalized6,hbs!lib/components/avatar/AvatarTemplate_unnormalized7,css!lib/components/avatar/AvatarStyle_unnormalized8,hbs!modules/login/LoginTemplate_unnormalized9,css!modules/login/LoginStyle_unnormalized10,hbs!modules/header/HeaderTemplate,hbs!lib/components/avatar/AvatarTemplate,hbs!modules/login/LoginTemplate
http://requirejs.org/docs/errors.html#timeout
require.js, line 1758 character 9

非常に紛らわしいのは、散発的にしか発生しないことです.JavaScriptファイルを必要とする方法でしょうか?

4

1 に答える 1

0

これは、 JQueryで発生した同様の問題に関連しているようです

これはすべてDOMの準備ができていないことに関するものであり、DOMが完全にロードされていないため、このエラーが発生し、言及した「ランダムな」動作も説明します.

まだ行っていない場合は、ページの最後にスクリプトを追加するか、ある種の遅延読み込みを試してください。

ちなみに、この点に関する投稿のみが、Microsoft が拒否したようで、バグとは見なされませんでした。

https://connect.microsoft.com/IE/feedback/details/792880/document-readystat

于 2014-01-09T21:48:43.517 に答える