Ionic 2,在 iOS 上使用 Angular 2 管道中断—“找不到变量:Intl"

Ionic 2, Using Angular 2 Pipe breaks on iOS—quot;Can#39;t find variable: Intlquot;(Ionic 2,在 iOS 上使用 Angular 2 管道中断—“找不到变量:Intl)
本文介绍了Ionic 2,在 iOS 上使用 Angular 2 管道中断—“找不到变量:Intl"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在模板中使用日期、百分比和货币管道时遇到同样的问题—

Experiencing the same problem with the date, percent, and currency pipes when using them in a template—

例如,我使用的是简单的百分比管道:

For example, I'm using a simple percent pipe:

{{ .0237| percent:'1.2-2' }}

在 Chrome 上运行时它可以工作,但是当我部署到 iOS 设备时,它会抛出此错误:

It works when running on Chrome, but when I deploy to an iOS device, it throws this error:

异常:ReferenceError:找不到变量:Intl in [{{ {{ .0237| percent:'1.2-2' }} ..."

"EXCEPTION: ReferenceError: Can't find variable: Intl in [{{ {{ .0237| percent:'1.2-2' }} ..."

还有其他人遇到过这个问题吗?任何建议或帮助将不胜感激!谢谢!

Has anyone else run into this problem? Any suggestions or help would be greatly appreciated! Thanks!

推荐答案

那是因为它依赖于内部化 API,目前并非所有浏览器都可用(例如 iOS 浏览器不可用).

That's because it relies on the internalization API, which is not currently available in all browsers (for example not on iOS browser).

请参阅兼容性表.

这是一个已知问题(beta.1).

This is a known issue (beta.1).

您可以尝试使用 polyfill for Intl.

为此,您可以使用 CDN 版本,并将其添加到您的 index.html:

To do so, you can use the CDN version, and add this to your index.html:

<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=Intl.~locale.en"></script>

或者如果你使用 Webpack,你可以使用 NPM 安装 Intl 模块:

Or if you use Webpack, you can install the Intl module with NPM:

npm install --save intl

并将这些导入添加到您的应用中:

And add these imports to your app:

import 'intl';
import 'intl/locale-data/jsonp/en';

这篇关于Ionic 2,在 iOS 上使用 Angular 2 管道中断—“找不到变量:Intl"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Problem with play-services-measurement-base on ionic(基于离子的游戏服务测量问题)
How to resize UITextView on iOS when a keyboard appears?(出现键盘时如何在iOS上调整UITextView的大小?)
How to reliably detect if an external keyboard is connected on iOS 9?(如何可靠地检测 iOS 9 上是否连接了外部键盘?)
How to mimic Keyboard animation on iOS 7 to add quot;Donequot; button to numeric keyboard?(如何在 iOS 7 上模拟键盘动画以添加“完成数字键盘的按钮?)
How do I dismiss the iOS keyboard?(如何关闭 iOS 键盘?)
Is possible to simulate touch event using an external keyboard on ios jailbroken?(是否可以在 ios 越狱后使用外部键盘模拟触摸事件?)