📜  示例 api 在线测试 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:48.085000             🧑  作者: Mango

代码示例2
let url = 'https://api.sheety.co/5f379c8292c16fcc323cfab50592b0e0/licences/feuille1';
fetch(url)
.then((response) => response.json())
.then(json => {
  // Do something with the data
  console.log(json.feuille1S);
});