Ember FastBoot 无法读取未定义的 属性 'userAgent'
Ember FastBoot Cannot read property 'userAgent' of undefined
我正在尝试将 Ember FastBoot
用于我的应用程序,但是当我 运行 时:
ember fastboot --serve-assets
抛出此错误:
Cannot read property 'userAgent' of undefined
TypeError: Cannot read property 'userAgent' of undefined
at Object.125.global/document (<anonymous>:121923:53)
at s (<anonymous>:104896:621)
at <anonymous>:104896:672
at Object.106../big-play-button.js (<anonymous>:113849:23)
at s (<anonymous>:104896:621)
at <anonymous>:104896:672
at Object.139.../../src/js/utils/merge-options.js (<anonymous>:123824:15)
at s (<anonymous>:104896:621)
at e (<anonymous>:104896:792)
at <anonymous>:104896:810
有什么帮助吗?
您发布的回购包含对 document
和 window
的大量引用。您将必须使用 ember provided facility for detecting the current environment
details 并根据您的页面是否在浏览器中呈现来实现条件逻辑。您可以使用 environment.hasDOM
来执行该检查。
我正在尝试将 Ember FastBoot
用于我的应用程序,但是当我 运行 时:
ember fastboot --serve-assets
抛出此错误:
Cannot read property 'userAgent' of undefined
TypeError: Cannot read property 'userAgent' of undefined
at Object.125.global/document (<anonymous>:121923:53)
at s (<anonymous>:104896:621)
at <anonymous>:104896:672
at Object.106../big-play-button.js (<anonymous>:113849:23)
at s (<anonymous>:104896:621)
at <anonymous>:104896:672
at Object.139.../../src/js/utils/merge-options.js (<anonymous>:123824:15)
at s (<anonymous>:104896:621)
at e (<anonymous>:104896:792)
at <anonymous>:104896:810
有什么帮助吗?
您发布的回购包含对 document
和 window
的大量引用。您将必须使用 ember provided facility for detecting the current environment
details 并根据您的页面是否在浏览器中呈现来实现条件逻辑。您可以使用 environment.hasDOM
来执行该检查。