userList: {
userName: string;
userAge: number;
};
}
const ssff: Users = fetch('https://example.com/file.json', { method: 'get' })
.then(function (res) {
return res;
})
.catch(function (ex) {
return 0;
});
const words = ssff.userList.userName;
console.log(words);
У тебя в ssff промис записан, а не результат запроса
google "typescript fetch async await",
Обсуждают сегодня