了解React Native中的不同JavaScript环境

by Khoa Pham

通过Khoa Pham

了解React Native中的不同JavaScript环境 (Get to know different JavaScript environments in React Native)

React Native can be very easy to get started with, and then at some point problems occur and we need to dive deep into it.

React Native可能很容易上手 ,然后在某些时候出现问题,我们需要深入研究它。

The other day we had a strange bug that was only occurring in production build, and in iOS only. A long backtrace in the app revealed that it was due to Date constructor failure.

前几天,我们遇到了一个奇怪的错误,该错误仅在生产版本中发生,并且仅在iOS中发生。 应用程序中的长时间回溯显示这是由于Date构造函数故障引起的。

const date = new Date("2019-01-18 12:00:00")

This returns the correct Date object in debug mode, but yields Invalid Date in release. What’s special about Date constructor? Here I’m using react native 0.57.5 and no Date libraries.

这会在调试模式下返回正确的Date对象,但在发行版中会产生Invalid DateDate构造函数有何特别之处? 在这里,我使用的是react native 0.57.5,并且没有Date库。

日期构造器 (Date constructor)

The best resource for learning Javascript is via Mozilla web docs, and entering Date:

学习Javascript的最佳资源是通过Mozilla Web文档,然后输入Date :

Creates a JavaScript Date instance that represents a single moment in time. Date objects use a Unix Time Stamp, an integer value that is the number of milliseconds since 1 January 1970 UTC.

创建一个表示单个时刻JavaScript Date实例。 Date对象使用Unix时间戳记 ,它是一个整数值,它是自1970年1月1日UTC以来的毫秒数。

Pay attention to how Date can be constructed by dateString:

注意如何用dateString构造Date:

dateStringString value representing a date. The string should be in a format recognized by the Date.parse() method (IETF-compliant RFC 2822 timestamps and also a version of ISO8601).

dateString表示日期的字符串值。 该字符串应采用Date.parse()方法可识别的格式( 符合IETF的RFC 2822时间戳以及ISO8601的版本 )。

So Date constructor uses static method Date.parse under the hood. This has very specific requirement about the format of date string that it supports

所以Date构造Date.parseDate.parse使用静态方法Date.parse 。 这对它支持的日期字符串的格式有非常具体的要求

The standard string representation of a date time string is a simplification of the ISO 8601 calendar date extended format (see Date Time String Format section in the ECMAScript specification for more details). For example, "2011-10-10" (date-only form), "2011-10-10T14:48:00" (date-time form), or "2011-10-10T14:48:00.000+09:00" (date-time form with milliseconds and time zone) can be passed and will be parsed. When the time zone offset is absent, date-only forms are interpreted as a UTC time and date-time forms are interpreted as local time.

日期时间字符串的标准字符串表示形式是ISO 8601日历日期扩展格式的简化形式(有关更多详细信息,请参见ECMAScript规范中的“ 日期时间字符串格式”部分)。 例如, "2011-10-10" (仅日期格式), "2011-10-10T14:48:00" (日期时间格式)或"2011-10-10T14:48:00.000+09:00" (具有毫秒和时区的日期时间格式)可以传递并进行解析。 缺少时区偏移时,仅日期格式将解释为UTC时间,而日期时间格式将解释为本地时间。

The ECMAScript specification states: If the String does not conform to the standard format the function may fall back to any implementation–specific heuristics or implementation–specific parsing algorithm. Unrecognizable strings or dates containing illegal element values in ISO formatted strings shall cause Date.parse() to return NaN.

ECMAScript规范指出:如果String不符合标准格式,则该函数可能会退回到任何特定于实现的试探法或特定于实现的解析算法。 ISO格式的字符串中无法识别的字符串或包含非法元素值的日期将导致Date.parse()返回NaN

The reason that we get Invalid Date in iOS must be because the code was run in two different JavaScript environments and they somehow have different implementation of the Date parsing function.

我们在iOS中获得无效日期的原因一定是因为代码是在两个不同JavaScript环境中运行的,并且它们在某种程度上对日期解析功能具有不同的实现。

JavaScript环境 (JavaScript Environment)

React Native guide has a dedicated section about JavaScript environments.

React Native指南专门介绍了JavaScript环境 。

When using React Native, you’re going to be running your JavaScript code in two environments:

使用React Native时,您将在两种环境中运行JavaScript代码:

  • In most cases, React Native will use JavaScriptCore, the JavaScript engine that powers Safari. Note that on iOS, JavaScriptCore does not use JIT due to the absence of writable executable memory in iOS apps.

    在大多数情况下,React Native将使用JavaScriptCore (支持SafariJavaScript引擎)。 请注意,在iOS上,由于iOS应用程序中没有可写的可执行内存,因此JavaScriptCore不使用JIT。

  • When using Chrome debugging, all JavaScript code runs within Chrome itself, communicating with native code via WebSockets. Chrome uses V8 as its JavaScript engine.

    使用Chrome调试时,所有JavaScript代码都在Chrome本身中运行,并通过WebSockets与本机代码进行通信。 Chrome使用V8作为其JavaScript引擎。

While both environments are very similar, you may end up hitting some inconsistencies. We’re likely going to experiment with other JavaScript engines in the future, so it’s best to avoid relying on specifics of any runtime.

尽管两种环境非常相似,但您最终可能会遇到一些不一致之处。 将来我们可能会尝试使用其他JavaScript引擎,因此最好避免依赖任何运行时的细节。

React Native also uses Babel and some polyfills to have some nice syntax transformers, so some of the code that we write may not be necessarily supported natively by JavascriptCore.

React Native还使用Babel和某些polyfill来具有一些不错的语法转换器,因此JavascriptCore不一定必须支持我们编写的某些代码。

Now it is clear that while we debug our app via Chrome debugger, it works because V8 engine handles that. Now try turning off Remote JS Debugging: we can see that the above Date constructor fails, which means it is using JavascriptCore.

现在很明显,当我们通过Chrome调试器调试应用程序时,它可以工作,因为V8引擎可以处理它。 现在尝试关闭远程JS调试:我们可以看到上面的Date构造函数失败,这意味着它正在使用JavascriptCore

To confirm this issue, let’s run our app in Xcode and go to the Safari app on MacOS to enter Development menu. Select the active Simulator and choose JSContext on the current iOS app. Remember to turn off Remote JS Debugging so that the app uses JavascriptCore:

为确认此问题,让我们在Xcode中运行我们的应用程序,然后转到MacOS上的Safari应用程序以进入“开发”菜单。 选择活动的Simulator,然后在当前iOS应用上选择JSContext。 请记住关闭远程JS调试,以便该应用程序使用JavascriptCore:

Now open the Console in Safari dev tools, and we should have access to JavascriptCore inside our app. Try running the above Date constructor to confirm that it fails:

现在,在Safari开发工具中打开控制台,我们应该可以在应用程序内访问JavascriptCore。 尝试运行上面的Date构造函数以确认它失败:

有效日期字符串格式是什么? (What are legit date string formats?)

Since 2016, JavascriptCore supports most ES6 features:

自2016年以来, JavascriptCore支持大多数ES6功能:

As of r202125, JavaScriptCore supports all of the new features in the ECMAScript 6 (ES6) language specification

从r202125开始 ,JavaScriptCore支持ECMAScript 6(ES6)语言规范中的所有新功能。

And it was fully confirmed a year later in JSC ? ES6

一年后,它在JSC中得到了充分证实? ES6

ES2015 (also known as ES6), the version of the JavaScript specification ratified in 2015, is a huge improvement to the language’s expressive power thanks to features like classes, for-of, destructuring, spread, tail calls, and much more

ES2015 (也称为ES6),在2015年批准了JavaScript规范的版本,是一个巨大的进步了语言的表达能力归功于像功能类 , 换的 , 解构 , 传播 , 尾调用和更

WebKit’s JavaScript implementation, called JSC (JavaScriptCore), implements all of ES6

WebKitJavaScript实现(称为JSC(JavaScriptCore)) 实现了所有ES6

For more details about JavaScript features supported by different JavaScript engines, visit this ECMAScript comparison table.

有关不同JavaScript引擎支持JavaScript功能的更多详细信息,请访问此ECMAScript比较表 。

Now for the date string format, from Date.parse, let’s visit ECMAScript 2015 specification to see what it says about date string format:

现在,从Date.parse中获取日期字符串格式,让我们访问ECMAScript 2015规范,以了解日期字符串格式的含义:

ECMAScript defines a string interchange format for date-times based upon a simplification of the ISO 8601 Extended Format. The format is as follows: YYYY-MM-DDTHH:mm:ss.sssZ

ECMAScript基于ISO 8601扩展格式的简化,为日期时间定义了字符串交换格式。 格式如下: YYYY-MM-DDTHH:mm:ss.sss Z

Where the fields are as follows:

字段如下:

"T" appears literally in the string, to indicate the beginning of the time element.

"T"字面上出现在字符串中,以指示时间元素的开始。

So JavascriptCore requires T specifier and V8 can work without it. The fix for now is to always include that T specifier. This way we always follow ECMAScript standards to make sure it works across different JavaScript environments.

因此, JavascriptCore需要T说明符,而V8可以不使用它。 现在的解决方法是始终包含该T指定符。 这样,我们始终遵循ECMAScript标准,以确保其可在不同JavaScript环境中正常工作。

const date = new Date("2019-01-18 12:00:00".replace(' ', 'T'))

And now it returns correct Date object. There may be difference between JavascriptCore on iOS and macOS, and among different iOS versions. The lesson learned here is that we should always test our app thoroughly in production and on devices to make sure it works as expected.

现在,它返回正确的Date对象。 iOS和macOS上的JavascriptCore之间以及不同的iOS版本之间可能存在差异。 从这里吸取的教训是,我们应该始终在生产环境和设备上全面测试我们的应用程序,以确保其能够按预期运行。

翻译自: https://www.freecodecamp.org/news/get-to-know-different-javascript-environments-in-react-native-4951c15d61f5/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392199.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

分布与并行计算—生命游戏(Java)

生命游戏其实是一个零玩家游戏,它包括一个二维矩形世界,这个世界中的每个方格居住着一个活着的或死了的细胞。一个细胞在下一个时刻生死取决于相邻八个方格中活着的或死了的细胞的数量。如果相邻方格活着的细胞数量过多,这个细胞会因为资源匮…

正确认识 Vista 激活期限

当我们在安装 Vista 时,可以不输入序列号进行安装,这和以往的操作系统安装有所不同,我们不必再为安装系统时找不到我们的序列号标签而发愁。如果不输入序列号而继续安装系统,那么系统将提示我们有30天的激活期限!这里的…

Oracle使用hs odbc连接mssql2008

1.创建odbc 2.在 product\11.2.0\dbhome_1\hs\admin\ 下拷贝initdg4odbc,把名字改为initcrmsql(init所建odbc的名称) HS_FDS_CONNECT_INFO crmsql #odbc名称 HS_FDS_TRACE_LEVEL 0 HS_FDS_RECOVERY_ACCOUNTsa #要连接的数据库名称 HS_FDS_RECOVERY_PWD…

oracle修改物化视图字段,获取物化视图字段的修改矢量(一)

当表建立了物化视图日志之后,表的DML修改会被记录到物化视图日志中,而物化视图日志则包含了一个修改矢量,来记录哪个列被修改。在文章列的修改矢量可以通过2的N次方来获得,也就是POWER(2, N)。而N的值,就是列的位置。但…

聚合 数据处理_R中聚合的简介:强大的数据处理工具

聚合 数据处理by Satyam Singh Chauhan萨蒂扬辛格乔汉(Satyam Singh Chauhan) R中聚合的简介:强大的数据处理工具 (An introduction to aggregates in R: a powerful tool for playing with data) Data Visualization is not just about colors and graphs. It’s …

大数据 notebook_Dockerless Notebook:数据科学期待已久的未来

大数据 notebookData science is hard. Data scientists spend hours figuring out how to install that Python package on their laptops. Data scientists read many pages of Google search results to connect to that database. Data scientists write a detailed docume…

【NGN学习笔记】6 代理(Proxy)和背靠背用户代理(B2BUA)

1. 什么是Proxy模式? 按照RFC3261中的定义,Proxy服务器是一个中间的实体,它本身即作为客户端也作为服务端,为其他客户端提供请求的转发服务。一个Proxy服务器首先提供的是路由服务,也就是说保证请求被发到更加”靠近”…

分布与并行计算—并行计算π(Java)

并行计算π public class pithread extends Thread {private static long mini1000000000;private long start,diff;double sum0;double cur1/(double)mini;public pithread(long start,long diff) {this.startstart;this.diffdiff;}Overridepublic void run() {long istart;f…

linux复制文件跳过相同,Linux cp指令,怎么跳过相同的文件

1、使用cp命令的-n参数即可跳过相同的文件 。2、cp命令使用详解:1)、用法:cp [选项]... [-T] 源文件 目标文件或:cp [选项]... 源文件... 目录或:cp [选项]... -t 目录 源文件...将源文件复制至目标文件,或将多个源文件…

eclipse类自动生成注释

1.创建新类时自动生成注释 window->preference->java->code styple->code template 当你选择到这部的时候就会看见右侧有一个框显示出code这个选项,你点开这个选项,点一下他下面的New …

rman恢复

--建表create table sales( product_id number(10), sales_date date, sales_cost number(10,2), status varchar2(20));--插数据insert into sales values (1,sysdate-90,18.23,inactive);commit; --启用rman做全库备份 运行D:\autobackup\rman\backup_orcl.bat 生成…

微软大数据_我对Microsoft的数据科学采访

微软大数据Microsoft was one of the software companies that come to hire interns at my university for 2021 summers. This year, it was the first time that Microsoft offered any Data Science Internship for pre-final year undergraduate students.微软是到2021年夏…

再次检查打印机名称 并确保_我们的公司名称糟透了。 这是确保您没有的方法。...

再次检查打印机名称 并确保by Dawid Cedrych通过戴维德塞德里奇 我们的公司名称糟透了。 这是确保您没有的方法。 (Our company name sucked. Here’s how to make sure yours doesn’t.) It is harder than one might think to find a good business name. Paul Graham of Y …

linux中文本查找命令,Linux常用的文本查找命令 find

一、常用的文本查找命令grep、egrep命令grep:文本搜索工具,根据用户指定的文本模式对目标文件进行逐行搜索,先是能够被模式匹配到的行。后面跟正则表达式,让grep工具相当强大。-E之后还支持扩展的正则表达式。# grep [options] …

分布与并行计算—日志挖掘(Java)

日志挖掘——处理数据、计费统计 1、读取附件中日志的内容,找出自己学号停车场中对应的进出车次数(in/out配对的记录数,1条in、1条out,视为一个车次,本日志中in/out为一一对应,不存在缺失某条进或出记录&a…

《人人都该买保险》读书笔记

内容目录: 1.你必须知道的保险知识 2.家庭理财的必需品 3.保障型保险产品 4.储蓄型保险产品 5.投资型保险产品 6.明明白白买保险 现在我所在的公司Manulife是一家金融保险公司,主打业务就是保险,因此我需要熟悉一下保险的基础知识&#xff0c…

Linux下查看txt文档

当我们在使用Window操作系统的时候,可能使用最多的文本格式就是txt了,可是当我们将Window平台下的txt文本文档复制到Linux平台下查看时,发现原来的中文所有变成了乱码。没错, 引起这个结果的原因就是两个平台下,编辑器…

如何击败腾讯_击败股市

如何击败腾讯个人项目 (Personal Proyects) Note from Towards Data Science’s editors: While we allow independent authors to publish articles in accordance with our rules and guidelines, we do not endorse each author’s contribution. You should not rely on an…

滑块 组件_组件制作:如何使用链接的输入创建滑块

滑块 组件by Robin Sandborg罗宾桑德伯格(Robin Sandborg) 组件制作:如何使用链接的输入创建滑块 (Component crafting: how to create a slider with a linked input) Here at Stacc, we’re huge fans of React and the render-props pattern. When it came time…

配置静态IPV6 NAT-PT

一.概述: IPV6 NAT-PT( Network Address Translation - Port Translation)应用与ipv4和ipv6网络互访的情况,根据参考链接配置时出现一些问题,所以记录下来。参考链接:http://www.cisco.com/en/US/tech/tk648/tk361/technologies_c…