首页 > 代码库 > 淘宝sdk - 宝贝对象

淘宝sdk - 宝贝对象

  宝贝数据:

  宝贝对象($item):

  • 宝贝ID :id
  • 宝贝后台类目 :itemCategoryId
  • 宝贝标题 :title
  • 宝贝价格 :price
  • 折扣价格 :discountPrice
  • 图片地址 :picUrl
  • 宝贝销售量 :soldCount
  • 宝贝收藏量 :collectedCount
  • 所属卖家ID :ownerId
  • 宝贝评论数 :commentCount (此属性只有商城店铺有,C店铺没有)

  $item属性:exp:$item->id

  获取宝贝链接:$uriManager->detailURI($item)

  获取宝贝指定尺寸图片链接:$item->getPicUrl(240)  //获取240*240的图片,$item->getPicUrl(240,120) -- 240*120

淘宝sdk - 宝贝对象