diff --git a/zh-cn/application-dev/reference/apis/js-apis-buffer.md b/zh-cn/application-dev/reference/apis/js-apis-buffer.md index a49f5ef1e96856a206c1cc7748e01e276dc5a097..5da74ef71ee217d044ec60848a891e7e7d9eebaa 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-buffer.md +++ b/zh-cn/application-dev/reference/apis/js-apis-buffer.md @@ -2657,7 +2657,7 @@ writeUInt16BE(value: number, offset?: number): number | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | | value | number | 是 | 写入Buffer的数据。 | -| offset | number | 否 | 偏移量。 默认值: 0。 | +| offset | number | 否 | 偏移量。 默认值为0。 | **返回值:** @@ -2906,7 +2906,7 @@ Blob的构造函数。 | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | | sources | string[] \| ArrayBuffer[] \| TypedArray[] \| DataView[] \| Blob[] | 是 | Blob实例的数据源。 | -| options | Object | 否 | options:
- endings:'transparent'或'native'
- type:Blob内容类型 | +| options | Object | 否 | options:
- endings:含义为结束符'\n'的字符串如何被输出,为'transparent'或'native'。native代表行结束符会跟随系统。'transparent'代表会保持Blob中保存的结束符不变。此参数非必填,默认值为'transparent'。
- type:Blob内容类型。其目的是让类型传达数据的MIME媒体类型,但是不执行类型格式的验证。此参数非必填,默认参数为''。 | **示例:** @@ -2951,9 +2951,9 @@ slice(start?: number, end?: number, type?: string): Blob | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| start | number | 否 | 起始位置。 | -| end | number | 否 | 结束位置。 | -| type | string | 否 | 内容类型。 | +| start | number | 否 | 起始位置。默认值为0。 | +| end | number | 否 | 结束位置。默认值为原Blob对象中的数据长度。 | +| type | string | 否 | 内容类型。默认值为''。 | **返回值:** | 类型 | 说明 |