我尝试获取地址,客户在结帐时的地址步骤中选择该地址。
我在 /app/code/local/Mandarin/AddressTypeDiscount/Block/Onepage/Review.php 中使用此代码:
$checkout = Mage::getSingleton('checkout/session')->getQuote();
$bilAddress = $checkout->getBillingAddress();
$mylog = print_r($bilAddress, true);
Mage::log("addres:".$mylog, null, 'mygento.log');
但在我的日志文件中,我得到了所有客户地址的数组。
我如何在地址步骤中获得选定的地址?谢谢。