Magento 2自定义产品属性不会保存

时间:2017-06-14 09:00:21

标签: php magento zend-framework magento2 entity-attribute-value

我正在编写一个magento 2模块 - 我试图让它为每个产品添加自定义属性。我的"设置> InstallData.php"文件成功将属性添加到" eav_attribute"表格在安装模块时,adminhtml将字段呈现为" name = product [my_attribute]",我认为这意味着它"接受"该字段是模型的有效部分。但是,在尝试使用自定义属性中的值保存产品时,数据库中不会保存任何内容。

这是我的代码:

<?php

// module namespace is 'Duel', module name is 'Gallery'
namespace Duel\Gallery\Setup;

use Magento\Eav\Setup\EavSetup;
use Magento\Eav\Setup\EavSetupFactory;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;

class InstallData implements InstallDataInterface
{

public function __construct(EavSetupFactory $eavSetupFactory)
{
    $this->_eavSetupFactory = $eavSetupFactory;
}

public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
    /** @var EavSetup $eavSetup */

    $eavSetup = $this->_eavSetupFactory->create(['setup' => $setup]);

    /**
    * Add attributes to the eav/attribute
    */

    $eavSetup->addAttribute(
        \Magento\Catalog\Model\Product::ENTITY,
        'my_attribute', 
        [
            'type' => 'text',
            'backend' => '',
            'label' => 'My New Attribute',
            'input' => 'text',
            'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_STORE,
            'visible' => true,
            'user_defined' => true,
            'required' => false,
            'visible_on_front' => true
        ]
    );
}
}

这里是视图中的html&gt; adminhtml&gt; ui_component&gt; product_form.xml

<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<fieldset name="attributes">
    <argument name="data" xsi:type="array">
        <item name="config" xsi:type="array">
            <item name="label" xsi:type="string" translate="true">MY CUSTOM ATTRIBUTE</item>
            <item name="collapsible" xsi:type="boolean">true</item>
            <item name="sortOrder" xsi:type="number">200</item>
        </item>
    </argument>  
    <field name="my_attribute">
        <argument name="data" xsi:type="array">
            <item name="config" xsi:type="array">
                <item name="label" xsi:type="string" translate="true">My new attribute</item>
                <item name="formElement" xsi:type="string">textarea</item>
            </item>
        </argument>
    </field>
</fieldset>

我手动更改了&#39; my_attribute&#39;的几个字段后,我暂时保存了它。在&#39; eav_attribute&#39;表,但是我提交了代码,但是愚蠢地没有保存确切的mysql数据库状态,现在又无法让它再次工作(在测试它每次安装模块时都会创建一个工作表)。 / p>

非常感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

这是因为您应该将数组中的键从user_defined更改为 is _ user_defined,一切都会正确。它可以保存它。...