Home Reference Source
public class | source

SearchFetcher

Extends:

Fetcher → SearchFetcher

Search API.

See:

Method Summary

Public Methods
public

Fetch the search result.

public

filter(conditions: Object): Search

Filter what you don't want when search.

public

setSearchCriteria(q: string, type: string): Search

Init the search fetcher for the artist, album, track or playlist.

Inherited Summary

From class Fetcher
public

fetchNextPage(fulfillment: fulfillment, nextUriPath: String): Promise

Fetches next page of various paged APIs.

public

hasNextPage(fulfillment: fulfillment, nextUriPath: String): Boolean

Is next page available for various paged APIs.

public

setTerritory(territory: string): Fetcher

Set the fetcher's territory.

Public Methods

public fetchSearchResult(limit: number, offset: number): Promise source

Fetch the search result.

Params:

NameTypeAttributeDescription
limit number
  • optional

The size of one page.

offset number
  • optional

The offset index for first element.

Return:

Promise

Example:

api.searchFetcher
 .setSearchCriteria('五月天 好好')
 .fetchSearchResult();

See:

public filter(conditions: Object): Search source

Filter what you don't want when search.

Params:

NameTypeAttributeDescription
conditions Object
  • optional

search conditions.

conditions.track string

track's name.

conditions.album string

album's name.

conditions.artist string

artist's name.

conditions.playlist string

playlist's title.

conditions.availableTerritory string

tracks and albums available territory.

Return:

Search

Example:

api.searchFetcher
 .setSearchCriteria('五月天 好好')
 .filter({artist: '五月天'})
 .fetchSearchResult();

public setSearchCriteria(q: string, type: string): Search source

Init the search fetcher for the artist, album, track or playlist.

Params:

NameTypeAttributeDescription
q string

The keyword to be searched.

type string
  • optional

['artist', 'album', 'track', 'playlist'] The type of search. Default to search all types. If you want to use multiple type at the same time, you may use ',' to separate them.

Return:

Search

See: