是否可以做一个属性什么将是文件上传(不是图像)?我试过这样:
<?php
$installer = $this;
$installer->startSetup();
$attribute = array(
'type' => 'file',
'label'=> 'Catalog Pdf',
'input' => 'file',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
'visible' => true,
'required' => false,
'user_defined' => true,
'default' => "",
'group' => "General Information"
);
$installer->addAttribute('catalog_category', 'catalog_pdf', $attribute);
$installer->endSetup();
它在类别中显示文件上传,但可能有问题,因为安装后未显示子类别(ajax 问题),并且在前端类别视图中我得到“处理您的请求时出错”