如何在 ReactJS 中使用 Axios

2024-10-15 12:45:17 编辑:抖狐科技 来源:摘自互联网

如何在 reactjs 中使用 axios - get 和 post 请求

如何在 reactjs 中使用 axios

介绍

axios 是一个流行的库,用于执行 get、post、put、delete 等 http 请求。 axios 非常适合在 react 应用程序中使用,因为它提供简单的语法并支持 promises。本文将讨论如何在 reactjs 应用程序中使用 axios。

axios 安装
确保你的 react 项目中安装了 axios:

npm install axios

登录后复制

在 react 组件中使用 axios
例如,我们希望使用 get 方法从 api 检索数据并将其显示在 react 组件中。

  1. 获取请求:

import react, { useeffect, usestate } from 'react';
import axios from 'axios';

const app = () => {
  const [data, setdata] = usestate([]);
  const [loading, setloading] = usestate(true);
  const [error, seterror] = usestate(null);

  useeffect(() => {
    const fetchdata = async () => {
      try {
        const response = await axios.get('https://jsonplaceholder.typicode.com/posts');
        setdata(response.data);
        setloading(false);
      } catch (error) {
        seterror(error);
        setloading(false);
      }
    };

    fetchdata();
  }, []);

  if (loading) return <p>loading...</p>;
  if (error) return <p>error: {error.message}</p>;

  return (
    <p>
      <h1>posts</h1>
      <ul>
        {data.map((post) =&gt; (
          <li key="{post.id}">{post.title}</li>
        ))}
      </ul>
</p>
  );
};

export default app;

登录后复制

说明:

  • 在组件首次加载时使用useeffect调用fetchdata函数。
    • axios.get 用于从 api url 检索数据。
    • 状态数据、加载和错误用于存储检索到的数据、加载状态和错误。

  1. post 请求: 要向服务器发送数据,可以使用post方法,如下所示:

import React, { useState } from 'react';
import axios from 'axios';

const App = () =&gt; {
  const [title, setTitle] = useState('');
  const [body, setBody] = useState('');

  const handleSubmit = async (e) =&gt; {
    e.preventDefault();
    try {
      const response = await axios.post('https://jsonplaceholder.typicode.com/posts', {
        title,
        body,
      });
      console.log('Response:', response.data);
      alert('Post successfully created!');
    } catch (error) {
      console.error('Error posting data:', error);
    }
  };

  return (
    <p>
      <h1>Create a Post</h1>
      <form onsubmit="{handleSubmit}">
        <input type="text" placeholder="Title" value="{title}" onchange="{(e)"> setTitle(e.target.value)}
        /&gt;
        <textarea placeholder="Body" value="{body}" onchange="{(e)"> setBody(e.target.value)}
        &gt;</textarea><button type="submit">Submit</button>
      </form>
    </p>
  );
};

export default App;

登录后复制

说明

  • axios.post 方法用于将标题和正文数据发送到 api。
  • handlesubmit 函数处理表单提交并将数据发送到服务器。

以上就是如何在 ReactJS 中使用 Axios - GET 和 POST 请求的详细内容,更多请关注抖狐科技其它相关文章!

本站文章均为抖狐网站建设摘自权威资料,书籍,或网络原创文章,如有版权纠纷或者违规问题,请即刻联系我们删除,我们欢迎您分享,引用和转载,我们谢绝直接复制和抄袭!感谢...
我们猜你喜欢