ошибку. Error: Uncaught (in promise): ReferenceError: Can't find variable: Intl. Как я понял, что-то не так с полифилами. Хотя в index.html присутствует строка <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>. Никто не сталкивался?
У тебя iOS версии 9.x - там нужны полифилы для Intl - видимо polifill.io не предоставляет нужных https://github.com/Financial-Times/polyfill-service/blob/master/polyfills/Intl/update.task.js рой в этом направлении npm install --save intl import 'intl'; import 'intl/locale-data/jsonp/en'; https://github.com/angular/angular-cli/issues/1675#issuecomment-254027916
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=Intl.~locale.fr,Intl.~locale.pt"></script> This is by far the best option to use the Intl polyfill since it will only load the polyfill code and the corresponding locale data when it is really needed (e.g.: safari will get the code and patch the runtime while chrome will get an empty script tag).
Обсуждают сегодня