在 react js 中执行 API 调用的正确方法是什么?

2022-08-30 02:03:25

我最近从Angular迁移到ReactJs。我正在使用jQuery进行API调用。我有一个API,它返回一个随机的用户列表,该列表将打印在列表中。

我不确定如何编写我的API调用。最佳做法是什么?

我尝试了以下方法,但我没有得到任何输出。如有必要,我愿意实现替代API库。

以下是我的代码:

import React from 'react';

export default class UserList extends React.Component {    
  constructor(props) {
    super(props);
    this.state = {
      person: []
    };
  }

  UserList(){
    return $.getJSON('https://randomuser.me/api/')
    .then(function(data) {
      return data.results;
    });
  }

  render() {
    this.UserList().then(function(res){
      this.state = {person: res};
    });
    return (
      <div id="layout-content" className="layout-content-wrapper">
        <div className="panel-list">
          {this.state.person.map((item, i) =>{
            return(
              <h1>{item.name.first}</h1>
              <span>{item.cell}, {item.email}</span>
            )
          })}
        <div>
      </div>
    )
  }
}

答案 1

在这种情况下,您可以在conceptDidMount内部执行ajax调用,然后更新state

export default class UserList extends React.Component {
  constructor(props) {
    super(props);

    this.state = {person: []};
  }

  componentDidMount() {
    this.UserList();
  }

  UserList() {
    $.getJSON('https://randomuser.me/api/')
      .then(({ results }) => this.setState({ person: results }));
  }

  render() {
    const persons = this.state.person.map((item, i) => (
      <div>
        <h1>{ item.name.first }</h1>
        <span>{ item.cell }, { item.email }</span>
      </div>
    ));

    return (
      <div id="layout-content" className="layout-content-wrapper">
        <div className="panel-list">{ persons }</div>
      </div>
    );
  }
}

答案 2

您可能想查看 Flux 架构。我还建议看看 React-Redux 实现。将 API 调用放在操作中。它比将其全部放在组件中要干净得多。

操作是一种帮助器方法,您可以调用它们来更改应用程序状态或执行 api 调用。