浩我可以插入陣列產品的使用環路 例如貝寶API插入產品陣列
在這裏,我必須使用循環來添加購物車
$item1 = new Item();
$item1->setName('Ground Coffee 40 oz')
->setCurrency('USD')
->setQuantity(1)
->setPrice('7.50');
$item2 = new Item();
$item2->setName('Granola bars')
->setCurrency('USD')
->setQuantity(5)
->setPrice('2.00');
產品,這必須是列表所有項目的
$itemList = new ItemList();
$itemList->setItems(array($item1, $item2));
,所以我必須使用循環中首先將其添加到陣列 謝謝
讓我試試,我認爲它會工作:) – 2014-09-23 09:41:09
錯誤MALFORMED_REQUEST :( – 2014-09-23 10:04:51
是所用的餅乾也許大? – 2014-09-23 11:08:35