就像标题中提到的,我如何才能显示错误的调用在 productSave
钩子吗,presta的版本是1.7.6.x
我试过用
Tools::displayError($this->l('error message')); // but this one is only visible in debug mode
我将感谢你的帮助。
干杯,Wiktor
尝试在网站根目录下新建一个文件,在你的网站上激活错误信息。
在文件中:
<?php
include('config/config.inc.php');
$idP = 705;
$prod = new Product($idP);
$prod->weight = '0';
dump($prod->save());
我还没有测试过这些,但它可能会工作。
$this->jsonError('custom error');
或
if (isset($error)) {
$json = array(
'status' => 'error',
'message' => $error,
);
}
die(json_encode($json));