我正在尝试更新产品图片标签。我写了一个观察员来抓住catalog_product_save_before
。
观察者正在捕捉事件,我能够回复/死于该功能。
以下是保存标签的功能。
public function catalog_product_save_before($observer)
{
// $product = $observer->getProduct();
// $product_id = $product->getId();
$conn_write = Mage::getSingleton('core/resource')->getConnection('core_write');
if (isset($_POST['Media'])) {
$post = $_POST['Media'];
foreach ($post as $value_id => $item) {
$sql = "UPDATE catalog_product_entity_media_gallery_value SET `label` = '" . addslashes($item['label']) . "' WHERE value_id = " . (int)$value_id;
if (isset($item['position'])) {
$sql = "UPDATE catalog_product_entity_media_gallery_value SET `label` = '" . addslashes($item['label']) . "', `position` = " . (int)$item['position'] . " WHERE value_id = " . (int)$value_id;
}
$conn_write->query($sql);
}
}
return $this;
}
这是$ sql的回声
UPDATE catalog_product_entity_media_gallery_value SET `label` = 'Test Label Text' WHERE value_id = 8441
当我在Workbench中运行它时,标签会更新, 当我运行_test.php时它也会更新。?
_test.php:
require_once "app/Mage.php";
Mage::app();
$conn_write = Mage::getSingleton('core/resource')->getConnection('core_write');
$item = ['label'=>'123456798'];
$value_id = 8441;
$sql = "UPDATE catalog_product_entity_media_gallery_value SET `label` = '" . addslashes($item['label']) . "' WHERE value_id = " . (int)$value_id;
$conn_write->query($sql);
die("COMPLETE");
有人可以解释为什么不允许更新这一行吗?
有没有办法从MySQL获得一些反馈?
答案 0 :(得分:1)
(代表OP发表。)
这个谜已经解决了...... phew。
之前不要使用onReceive()
,否则必须覆盖保存信息。