interface Context { get(key: string): string; getAny(key: string): unknown; put(key: string, value: unknown): void;} Methods
get
- get(key: string): string
Returns string
getAny
- getAny(key: string): unknown
Returns unknown
put
- put(key: string, value: unknown): void
Parameters
- key: string
- value: unknown
Returns void
Context provides a tiny layer for passing data between callbacks.
For example, the Crawler.onHTML callback function puts data into the context.
The Crawler.onResponse callback function reads the data previously put by the Crawler.onHTML callback from the context.