global.md 4.4 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Global


## 实例方法


### parseInt(string, radix?)

<!-- UTSJSON.Global.parseInt.description -->

<!-- UTSJSON.Global.parseInt.param -->

<!-- UTSJSON.Global.parseInt.returnValue -->

DCloud-yyl's avatar
DCloud-yyl 已提交
15 16
> 注意:返回值类型一定是`number`,不是平台专有数字类型(如Int、Float、Double等)。

D
DCloud_LXH 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
<!-- UTSJSON.Global.parseInt.compatibility -->

<!-- UTSJSON.Global.parseInt.tutorial -->

**注意**

- 该方法仅支持对 string 类型的解析,传入其他类型会编译报错。字符串开头的空白符将会被忽略。
- radix 参数可不传,默认值为 10。但是不可传入 null, 传入 null 会编译报错。
- radix 小于 2 或大于 36,或第一个非空格字符不能转换为数字将返回 NAN。第一个非空格字符不能转换为数字是指在指定的 radix 下,第一个非空字符不能转成数字,示例如下:

```ts
const a = parseInt("a"); // 结果为 NAN
const b = parseInt("a", 16) // 结果为 10 (原因:16进制下 a 是合法字符)
const c = parseInt("546", 2) // 结果为 NAN (原因:除了“0、1”外,其他数字都不是有效二进制数字)

```

- 有关 radix 缺省( radix 为 0 或者未指定)时的自动推导:
	+ 如果输入的 string 以 0x 或 0X(一个 0,后面是小写或大写的 X)开头,那么 radix 被假定为 16,字符串的其余部分被当做十六进制数去解析。
	+ 如果输入的 string 以任何其他值开头,radix 是 10 (十进制)。
- 如果 parseInt 遇到的字符不是指定 radix 参数中的数字,它将忽略该字符以及所有后续字符,并返回到该点为止已解析的整数值。parseInt 将数字截断为整数值。允许前导和尾随空格。
- 某些数字在其字符串表示形式中使用 e 字符(例如 6.022×23 表示 6.022e23 ),因此当对非常大或非常小的数字使用数字时,使用 parseInt 截断数字将产生意外结果。如:parseInt("6.022e23") == 6。

> 特别注意:
> 当要解析的字符串表示的数字很大(超过最大的整数 9223372036854775807 )时,将以科学计数法进行表示,此时会丢失精度( iOS 和 Android 结果一致,和 JS 结果相比有误差)。(此特性将在 HBuilderX 3.93+ 生效,HBuilderX 3.92 及以下版本可表示的数字的最大值为最大的 Int 值,iOS 平台为 9223372036854775807,Android 平台 为 2147483647,超过此值 iOS 下出现整型溢出,Android 下会返回 NAN )。


### parseFloat(string)

<!-- UTSJSON.Global.parseFloat.description -->

<!-- UTSJSON.Global.parseFloat.param -->

<!-- UTSJSON.Global.parseFloat.returnValue -->

DCloud-yyl's avatar
DCloud-yyl 已提交
52 53
> 注意:返回值类型一定是`number`,不是平台专有数字类型(如Int、Float、Double等)。

D
DCloud_LXH 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
<!-- UTSJSON.Global.parseFloat.compatibility -->

<!-- UTSJSON.Global.parseFloat.tutorial -->

- 注意: 该方法仅支持对 string 类型的解析,传入其他类型会编译报错。

### isNaN(number)

<!-- UTSJSON.Global.isNaN.description -->

<!-- UTSJSON.Global.isNaN.param -->

<!-- UTSJSON.Global.isNaN.returnValue -->

<!-- UTSJSON.Global.isNaN.compatibility -->

<!-- UTSJSON.Global.isNaN.tutorial -->

### isFinite(number)

<!-- UTSJSON.Global.isFinite.description -->

<!-- UTSJSON.Global.isFinite.param -->

<!-- UTSJSON.Global.isFinite.returnValue -->

<!-- UTSJSON.Global.isFinite.compatibility -->

<!-- UTSJSON.Global.isFinite.tutorial -->

### decodeURI(encodedURI)

<!-- UTSJSON.Global.decodeURI.description -->

<!-- UTSJSON.Global.decodeURI.param -->

<!-- UTSJSON.Global.decodeURI.returnValue -->

<!-- UTSJSON.Global.decodeURI.compatibility -->

<!-- UTSJSON.Global.decodeURI.tutorial -->

### decodeURIComponent(encodedURIComponent)

<!-- UTSJSON.Global.decodeURIComponent.description -->

<!-- UTSJSON.Global.decodeURIComponent.param -->

<!-- UTSJSON.Global.decodeURIComponent.returnValue -->

<!-- UTSJSON.Global.decodeURIComponent.compatibility -->

<!-- UTSJSON.Global.decodeURIComponent.tutorial -->

### encodeURI(uri)

<!-- UTSJSON.Global.encodeURI.description -->

<!-- UTSJSON.Global.encodeURI.param -->

<!-- UTSJSON.Global.encodeURI.returnValue -->

<!-- UTSJSON.Global.encodeURI.compatibility -->

<!-- UTSJSON.Global.encodeURI.tutorial -->

### encodeURIComponent(uriComponent)

<!-- UTSJSON.Global.encodeURIComponent.description -->

<!-- UTSJSON.Global.encodeURIComponent.param -->

<!-- UTSJSON.Global.encodeURIComponent.returnValue -->

<!-- UTSJSON.Global.encodeURIComponent.compatibility -->

DCloud-yyl's avatar
DCloud-yyl 已提交
130
<!-- UTSJSON.Global.encodeURIComponent.tutorial -->