简要描述:

  • 获取国际电话区号

请求URL:

  • /api/common/phoneareacode

请求参数:

入参示例:

  1. https://localhost:6001/api/common/phoneareacode

返回示例:

正确时返回:

  1. {
  2. "code": 200,
  3. "success": true,
  4. "message": null,
  5. "result": [
  6. {
  7. "areaCode": "86",
  8. "countryName": "China"
  9. },
  10. {
  11. "areaCode": "852",
  12. "countryName": "Hong Kong"
  13. }
  14. ]
  15. }

错误时返回:

返回参数说明:

Data数据说明

参数名 类型 说明
areaCode string 国家电话区号
countryName string 国家名称

备注:

-