Module: ajaxAPI/product

Ajax-обертки для работы с товарами

Methods


<static> get(id)

Получение информации о товаре
Parameters:
Name Type Description
id number id товара
Returns:
Type
$.ajax
Example
ajaxAPI.product.get(123456)
 .done(function (onDone) { console.log('onDone: ', onDone) })
 .fail(function (onFail) { console.log('onFail: ', onFail) });

<static> getList(ids)

Получение информации о списке товаров. Важно! Отсутствует поле "подробное описание".
Parameters:
Name Type Description
ids array список id товаров, за раз моно получить информацию не более чем о 100 товарах
Returns:
Type
$.ajax
Example
ajaxAPI.product.getList([123456,123457,123458,123459])
 .done(function (onDone) {console.log('onDone: ', onDone) })
 .fail(function (onFail) {console.log('onFail: ', onFail) });