我在Angular 5中使用IE11遇到了麻烦。我打开了polyfills:
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es7/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';
并为IE设置元标记:
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
当我使用 ng serve 开始项目时,一切正常。但是,当我使用 - prod 选项构建项目时,应用程序无法在IE11中运行。 Firefox和Chrome工作正常。
控制台日志:
ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'gui/account'
Error: Cannot match any routes. URL Segment: 'gui/account'
at Anonymous function (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:401190)
at e.prototype.error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:386643)
at e.prototype._error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7955)
at e.prototype.error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7661)
at e.prototype._error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7955)
at e.prototype.error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7661)
at e.prototype._error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7955)
at e.prototype.error (http://localhost:8080/gui/main.d12ff1833b14b6308efb.bundle.js:1:7661)
at e.prototype._error (http://localhost:8080/gui/main.d12ff1833
SCRIPT5011: Can't execute code from a freed script
File: polyfills.6460c1711c3b9abc371d.bundle.js, Line: 1, Column: 69035
当我尝试调试它时,我在polyfills.bundle.js中出现了一些错误:
非常感谢你的帮助。
答案 0 :(得分:2)
我终于找到了导致这个问题的原因。我从Spring应用程序 webapp / gui文件夹提供Angular应用程序。这导致路由器行为异常,解决方案是改变index.html中的 base href
<base href="#/">
到
<base href="/gui/">
这样我的Angular Spring控制器会将链接http://localhost:8080/gui/account重定向到Angular index.html。然后Angular路由器将获取此链接并重定向到/ account组件。
这可能与缺陷https://github.com/angular/angular/issues/18176有关。
我希望这对你们也有帮助。
答案 1 :(得分:0)
我只有IE11,Angular 6项目和Spring Boot遇到相同的问题
我使用自己的工厂根据当前位置window.location.pathname
提供了APP_BASE_HREF令牌,从而解决了该问题:
{
provide: APP_BASE_HREF,
useValue: window.location.pathname,
}
我还从<base href
中删除了index.html
>标记,只是为了保持简洁。