无法在 magento2 中添加新产品

unable to add new products in magento2

无法在 magento2.After 中添加新产品点击添加新产品加载器保持 运行。(有时工作正常)我发现问题“Uncaught TypeError: component.getPreview is not a function" in import-handler.js file line no 44.Is 有解决这个错误的解决方案吗? magento 版本 2.4.1

有点晚了,但请尝试从您的属性集中删除 meta_description,然后重试。

如果成功了请告诉我!

当您设置属性组代码 'description' 时可能会发生这种情况,即使您更改了标签,但如果 attribute_group_code = 'description' 那么它可能会导致 PageBuilder 元素“描述”出现问题" 在 2.4.3

所以只需将属性代码更改为其他内容,例如:“desc”

UPDATE `eav_attribute_group` SET `attribute_group_code` = 'desc' WHERE `attribute_group_code` = 'description';

然后清除缓存,仅此而已!