繁体   English   中英

axios 是否需要额外配置才能从 REST API 获取数据?

[英]Does axios need extra config to get data from REST API?

我正在尝试使用 get 方法将获取的 API 转换为 axios。 在此之前,我计划继续使用“async, await”。

当我替换下面的代码时:

// before
const fetchPlanets = async () => {
  const res = await fetch("http://swapi.dev/api/planets/");
  return res.json();
};

// after
const fetchPlanets = async () => {
  const res = await axios
    .get("http://swapi.dev/api/planets/")
    .then((respond) => {
      respond.data;
    });
};
  • async 可以在寻址 function 时使用。
  • 并返回 const res 作为 res.json();
  • 另外...axios 不需要 res.json,因为它返回为 json 类型。

到目前为止,这就是我的理解方式。 使用 fetch API,这项工作完美无缺。

代码应该如何让 axios 按我的预期工作?

// Planets.js
import React from "react";
import { useQuery } from "react-query";
import Planet from "./Planet";
// import axios from "axios";

const fetchPlanets = async () => {
  const res = await fetch("http://swapi.dev/api/planets/");
  return res.json();
};

const Planets = () => {
  const { data, status } = useQuery("planets", fetchPlanets);
  console.log(data);

  return (
    <div>
      <h2>Planets</h2>

      {status === "loading" && <div>Loading data...</div>}

      {status === "error" && <div>Error fetching data!</div>}

      {status === "success" && (
        <div>
          {data.results.map((planet) => (
            <Planet key={planet.name} planet={planet} />
          ))}
        </div>
      )}
    </div>
  );
};

export default Planets;

和 Pl.net.js; 以防万一。

import React from "react";

const Planet = ({ planet }) => {
  return (
    <div className="card">
      <h3>{planet.name}</h3>
      <p>Population - {planet.population}</p>
      <p>Terrain - {planet.terrain}</p>
    </div>
  );
};

export default Planet;

您的 axios 代码中有 2 个问题。

  1. 你应该返回 respond.data。

  2. 您应该返回整个 axios 响应。

所以这会起作用:

const fetchPlanets = async () => {
  return await axios
    .get("http://swapi.dev/api/planets/")
    .then((respond) => {
      return respond.data;
    });
};

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM