_findProductsByTitle
How to Use _findProductsByTitle
Method
_findProductsByTitle
method is designed to search for products based on a title or keyword. It allows you to paginate the results, perform optional calculations, and specify sorting options.Usage Steps:
1.
page
: The page number for pagination.pagesize
: The number of products per page.search
: The search term or title to filter products by.calc
: A boolean indicating whether to perform calculations on the products.sort
: The sorting order for the results.callback
: A function to handle the results.2.
_findProductsByTitle
method with the required parameters.3.
callback
function will receive the products and total count as parameters, allowing you to process or display the results.Example:
_findProductsByTitle
method is called with the search term "Laptop"
and other parameters.handleResults
function will process the retrieved products and total count.Common Use Cases:
1.
2.
3.
calc
parameter to true
to include them in the API request.Notes:
filter
parameter is constructed by appending the search term with the prefix search=
. This formats the query string for the API request to fetch products that match the search criteria.sort
parameter allows you to specify the order in which results are returned. By default, the sorting is done by -SortDate
, but you can customize this based on your requirements (e.g., -Price
for descending price)._findProducts
function is used internally to handle the API request. Ensure that _initializeProductProperties
is implemented to format or enrich the product data as needed.search
parameter is valid and not empty to avoid unnecessary API calls. Handle cases where the search term is empty or null as needed in your application._findProductsByTitle
method to search for products based on a title or keyword, providing enhanced search capabilities and user experience in your application.Modified at 2024-08-20 12:59:32