我注意到Magento 2 catalog_attributes.xml在以下文件夹中包含几个文件:
app/code/Magento/Bundle/etcapp/code/Magento/Catalog/etcapp/code/Magento/CatalogSearch/etcapp/code/Magento/CatalogUrlRewrite/etcapp/code/Magento/Downloadable/etcapp/code/Magento/GiftMessage/etcapp/code/Magento/Msrp/etcapp/code/Magento/Sales/etcapp/code/Magento/Tax/etcapp/code/Magento/Wishlist/etc
这些文件如下所示(该Sales文件的示例):
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Catalog:etc/catalog_attributes.xsd">
<group name="quote_item">
<attribute name="sku"/>
<attribute name="type_id"/>
<attribute name="name"/>
<attribute name="status"/>
<attribute name="visibility"/>
<attribute name="price"/>
<attribute name="weight"/>
<attribute name="url_path"/>
<attribute name="url_key"/>
<attribute name="thumbnail"/>
<attribute name="small_image"/>
<attribute name="tax_class_id"/>
<attribute name="special_from_date"/>
<attribute name="special_to_date"/>
<attribute name="special_price"/>
<attribute name="cost"/>
<attribute name="gift_message_available"/>
</group>
</config>
这些文件是用来做什么的?
另请参见magento.stackexchange.com/questions/120504/…–
—
亚历克斯