“Axios TypeScript get” Ответ

TypeScript Axios

axios.request<ServerData>({
  url: 'https://example.com/path/to/data',
  transformResponse: (r: ServerResponse) => r.data
}).then((response) => {
  // `response` is of type `AxiosResponse<ServerData>`
  const { data } = response
  // `data` is of type ServerData, correctly inferred
})
jordangarrison

TypeScript Axios

interface User {
    id: number;
    firstName: string;
}


axios.get<User[]>('http://localhost:8080/admin/users')
        .then(response => {
            console.log(response.data);
            setUserList( response.data );
        });
Grumpy Goat

Axios TypeScript get

axios.get<T, AxiosResponse<R>>
Talented Tapir

Ответы похожие на “Axios TypeScript get”

Вопросы похожие на “Axios TypeScript get”

Больше похожих ответов на “Axios TypeScript get” по TypeScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования