如何在购物车页面 woocommerce 中获取可变产品属性

how to i get variable product attributes in cart page woocommerce

我想在 WooCommerce 的购物车页面上显示用户选择的属性

我试图从可变产品中获取属性但无法

我能够按如下方式解决此问题

if ($_product->get_attributes()){
 foreach ($_product->get_attributes() as $key => $val) { ?>
  <p><?= wc_attribute_label($key) ?> : <span> <?= $val ?></span></p>
  <?php }
  }?>

您可以从 $_product

中获取 属性