Magento 1.x 当我们对多个 setData 使用 setData 方法时,日期字段没有得到更新

Magento 1.x Date field is not getting updated when we use setData method with multiple setData

我们的应用程序使用 Magento 1.9。这是我的示例代码

 $customer_collection= Mage::getModel("customer/customer")->load($data['customer_id']);
 foreach ($data['data'] as $key => $customer) {
    $customer_collection->setData($customer['attribute_name'] , $customer['attribute_value']); 
 }
$customer_collection->save(); //finally saving the data

以上代码适用于除日期字段之外的所有字段。问题是当我们发送包括日期字段在内的多个数据时,其他字段正在更新但日期字段未更新。谁能帮我解决这个问题?

对于日期字段更新尝试使用

$object->setData($attributeCode, Varien_Date::now());

根据@mladen-ilić建议,

刷新缓存存储并再次尝试post数据。它就像一个魅力。