相当新的 Magento 安装,产品已设置等,并且正要导出产品 CSV,一旦我提交了正常表单,错误“没有发送有效数据”我开始进行一些调试以查看发生了什么。第一站是 exception.log
Notice: Undefined index: in /app/code/core/Mage/ImportExport/Model/Export/Entity/Product.php on line 539' in /app/code/core/Mage/Core/functions.php:245
导致问题的功能是:
/**
* Update data row with information about categories. Return true, if data row was updated
*
* @param array $dataRow
* @param array $rowCategories
* @param int $productId
* @return bool
*/
protected function _updateDataWithCategoryColumns(&$dataRow, &$rowCategories, $productId)
{
if (!isset($rowCategories[$productId])) {
return false;
}
$categoryId = array_shift($rowCategories[$productId]);
$dataRow[self::COL_ROOT_CATEGORY] = $this->_rootCategories[$categoryId];
if (isset($this->_categories[$categoryId])) {
$dataRow[self::COL_CATEGORY] = $this->_categories[$categoryId];
}
return true;
}
由于某种原因,$categoryId 没有设置为 $rowCategories 不是数组。
我已经重新运行了索引管理以防万一,但在我看来,类别或其他东西有问题。我知道一个快速解决方法是在继续之前检查 $categoryId 是否已设置,但我想首先知道是什么导致了错误。