我只想获取一个 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()) 时,它返回: '获取失败'
我该怎么办?
我尝试更改链接样式但没有成功