6 如何从Magento 2中的国家/地区代码中获取国家/地区名称? 我想从国家/地区代码中获取国家/地区名称,我从这样的数据顺序中获得国家/地区代码: $data = $order->getShippingAddress()->getData(); $countryCode = $data['country_id']; echo $countryCode; 它将打印“美国”或任何其他国家代码,是否有办法从该国家代码获取国家名称? 10 magento2 model country-regions