跳到主要内容

Function: loadBuffer()

loadBuffer(buffer, options): CheerioAPI

Sniffs the encoding of a buffer, then creates a querying function bound to a document created from the buffer.

Parameters

buffer: Buffer

The buffer to sniff the encoding of.

options: DecodeStreamOptions = {}

The options to pass to Cheerio.

Returns

CheerioAPI

The loaded document.

Example

import * as cheerio from 'cheerio';

const buffer = fs.readFileSync('index.html');
const $ = cheerio.fromBuffer(buffer);

Defined in

src/index.ts:53