Magento中可以通过访问Url把产品加入购物车。1添加简单产品(SimpleProduct)(1)通过产品idcheckout/cart/add?product=[id]&qty=[qty](2)通过产品sku$cProd=Mage::getModel('catalog/product');$id=$cProd->getIdBySku("$sku");2添加可配置产品(ConfigurableProduct)checkout/cart/add?product=[id]&...
查看全文