我无法从 https 链接获取 json

问题描述 投票:0回答:0

我只想获取一个 json, 但是我遇到了一个问题

这是我的 JS:

async function get() {
  console.log('log');
  let url = 'https://coderapi.ir/api/chatroommahan.json';
  let obj = await (await fetch(url)).json();
  console.log(obj);
}

get();

这是我的 json 链接: https://coderapi.ir/api/chatroommahan.json

当我调用这个函数 (get()) 时,它返回: '获取失败'

我该怎么办?

我尝试更改链接样式但没有成功

javascript json ajax fetch
© www.soinside.com 2019 - 2024. All rights reserved.