Shopware 6:使用商店查询国家/地区 api
Shopware 6: Query country states using the store api
我想通过商店查询国家状态-API (https://docs.shopware.com/en/shopware-platform-dev-en/store-api-guide/sales-channel?category=shopware-platform-dev-en/store-api-guide)
在文档中我没有看到任何关于国家的信息,但我有以下参考:GET /store-api/v3/context gives
{
...
salesChannel: {
countries: [
{
...
state: null
...
}
]
}
}
如您所见,这不包括国家...
Shopware 版本 6.3.3.1
您可以使用 GET /store-api/v3/country?associations[states][]
端点。
我想通过商店查询国家状态-API (https://docs.shopware.com/en/shopware-platform-dev-en/store-api-guide/sales-channel?category=shopware-platform-dev-en/store-api-guide) 在文档中我没有看到任何关于国家的信息,但我有以下参考:GET /store-api/v3/context gives
{
...
salesChannel: {
countries: [
{
...
state: null
...
}
]
}
}
如您所见,这不包括国家...
Shopware 版本 6.3.3.1
您可以使用 GET /store-api/v3/country?associations[states][]
端点。