“Axios TypeScript Get” Kod odpowiedzi

Axios TypeScript

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

AXIOS Typecript

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

Odpowiedzi podobne do “Axios TypeScript Get”

Pytania podobne do “Axios TypeScript Get”

Więcej pokrewnych odpowiedzi na “Axios TypeScript Get” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu