DOCS

Customize display countries

/

自定义显示国家

覆盖Hello在某些国家的显示方式。

默认情况下,Hello 仅会在您的Zonos 设置中的运输区域内显示。如果您希望在所有国家或仅在特定国家显示Hello,可以在您的JavaScript集成中自定义国家显示行为。

国家显示行为 

Hello 支持以下货币显示格式:

  • ONLY_SHIPPABLE(默认) - 仅在您的Hello 设置中的运输区域内显示Zonos。
  • ALL - 在所有国家显示Hello。
  • 一组ISO国家代码 - 仅在列出的国家显示Hello。

您可以通过将showForCountries属性传递到helloSettings对象中来覆盖Hello的国家显示行为,方法是在Zonos.init中进行设置。

JavaScript

1
2
3
4
5
Zonos.init({
  helloSettings: {
    showForCountries: 'ALL',
  },
});

监听国家更改 

您可以通过将回调函数传递给 Hello.inithelloSettings 对象的 onCountryChange 属性,来监听在 Zonos 中选择的国家更改。 每当用户从 Hello 的国家选择器中选择新的国家时,这将触发回调。

JavaScript

1
2
3
4
5
6
7
8
window.Zonos.init({
  helloSettings: {
    onCountryChange: function (countryCode, currencyCode) {
      console.log("Selected country and currency:", countryCode, currencyCode);
    },
  },
  }
});

这个页面有帮助吗?


有问题吗?

联系我们。
在本页上: