← 返回首页
FileReaderSync: FileReaderSync() constructor - Web APIs | MDN

FileReaderSync: FileReaderSync() constructor

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Note: This feature is only available in Web Workers, except for Service Workers.

The FileReaderSync() constructor creates a new FileReaderSync.

In this article

Syntax

js
new FileReaderSync()

Parameters

None.

Examples

The following code snippet shows creation of a FileReaderSync object using the FileReaderSync() constructor and subsequent usage of the object:

js
function readFile(blob) { const reader = new FileReaderSync(); postMessage(reader.readAsDataURL(blob)); }

Note: This snippet must be used inside a Worker, as synchronous interfaces can't be used on the main thread.

Specifications

Specification
File API
# filereadersyncConstrctr

Browser compatibility

Enable JavaScript to view this browser compatibility table.