Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
[{"name":"Boston","id":3}]
data.map((item) => {})
getResource = async (url, opts) => { const res = await fetch(`${this.proxyurl}${this._apiBase}${url}`, opts); const body = await res; return body.json(); }; getCities = async (token) => { // console.log(token); const url = '/api/v1/cities/'; const cities = await this.getResource(url, { method: 'GET', // credentials: 'include', headers: { 'Authorization': `Bearer ${token}`} }); console.log(cities); return cities };
[{…}] 0: id: 3name: "Boston" __proto__: Object length: 1__proto__: Array(0)