我正在创建一种新的送货方式,使用邮政编码验证邮政编码是否有覆盖,但首先我需要结帐表单中的数据,我找到了下一个代码:
$shippingId = $customerSession->getCustomer()->getDefaultShipping();
$address = $objectManager->create('Magento\Customer\Model\Address')->load($shippingId);
$address->getData();
我用它来获取数据但是在chrome中检查控制台会显示下一条消息:
无法加载资源:服务器响应状态为500
部分代码是:
public function collectRates(RateRequest $request)
{
if (!$this->getConfigFlag('active')) {
return false;
}
$shippingId = $customerSession->getCustomer()->getDefaultShipping();
$address = $objectManager->create('Magento\Customer\Model\Address')->load($shippingId);
$mage = $address->getData();
$file = 'postal.txt';
$print = print_r($mage, true);
file_put_contents($file, $print, FILE_APPEND | LOCK_EX);
$shippingPrice = $this->getConfigData('price');
$result = $this->_rateResultFactory->create();
if ($shippingPrice !== false) {
$method = $this->_rateMethodFactory->create();
$method->setCarrier($this->_code);
$method->setCarrierTitle($this->getConfigData('title'));
$method->setMethod($this->_code);
$method->setMethodTitle($this->getConfigData('name'));
if ($request->getFreeShipping() === true || $request->getPackageQty() == $this->getFreeBoxes()) {
$shippingPrice = '0.00';
}
$method->setPrice($shippingPrice);
$method->setCost($shippingPrice);
$result->append($method);
}
return $result;
}
如何正确地从结帐表单中获取数据?
答案 0 :(得分:0)
要检索邮政编码,请在$request->getDestPostcode()
方法
CollectRates