blob: b4afcc2238f603989758b548569d17f235d5d583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
title: ArrayBufferView
slug: Web/API/ArrayBufferView
tags:
- API
- Interface
- JavaScript
- Reference
- Typed Arrays
translation_of: Web/API/ArrayBufferView
---
{{APIRef}}
**`ArrayBufferView`** 是一个表示以下任意一个 {{jsxref("TypedArray")}} 类型的辅助数据类型:
- {{jsxref("Int8Array")}}
- {{jsxref("Uint8Array")}}
- {{jsxref("Uint8ClampedArray")}}
- {{jsxref("Int16Array")}}
- {{jsxref("Uint16Array")}}
- {{jsxref("Int32Array")}}
- {{jsxref("Uint32Array")}}
- {{jsxref("Float32Array")}}
- {{jsxref("Float64Array")}}
- {{jsxref("DataView")}}
这是一种简化规范的辅助数据类型,它不是一个接口,也没有实现它的对象。
## 规范
| Specification | Status | Comment |
| -------------------------------------------------------------------------------- | ------------------------ | ------------------- |
| {{SpecName('WebIDL', "#ArrayBufferView", "ArrayBufferView")}} | {{Spec2('WebIDL')}} | Initial definition. |
|