📜  表格电话号码必须带有国家代码 html 代码示例

📅  最后修改于: 2022-03-11 14:52:57.758000             🧑  作者: Mango

代码示例1
function getIp(callback) {
 fetch('https://ipinfo.io/json?token=', { headers: { 'Accept': 'application/json' }})
   .then((resp) => resp.json())
   .catch(() => {
     return {
       country: 'us',
     };
   })
   .then((resp) => callback(resp.country));
}