gpt4 book ai didi

javascript - React Reuse 在整个组件中获取 JSON 数据

转载 作者:行者123 更新时间:2023-11-30 09:19:45 24 4
gpt4 key购买 nike

大家好,我是 React 的新手,正在学习整个项目中的可重用函数。

我想获取我的 JSON 数据,但不必每次都在我的组件中调用它。

App.js

import React, { Component } from 'react';
import { Route, NavLink, HashRouter } from "react-router-dom";

import logo from '../assets/logo.png';
import './app.css';

import About from "../about/about";
import Services from "../services/services";
import Testimonials from "../testimonials/testimonials";
import Contact from "../contact/contact";

class App extends Component {
constructor(props) {
super(props);
this.state = {
items : []
};
}
componentDidMount(){
this.getItems();
}
getItems(){
fetch('./data/data_arr.js')
.then(results => results.json())
.then(results => this.setState({'items': results}));
}
render() {
return (
<HashRouter>
<div className="container">
<div className="header">
<div className="App-logo"><NavLink exact to="/"><img src={logo} alt="logo" /></NavLink></div>
<nav className="Nav-Desktop">
{this.state.items.map((item, index) => (
<div key={index}>
{
item.links.map((link, i) => (
<NavLink key={i} exact to={link.url}>{link.text}</NavLink>
))}
</div>
))}
{
this.state.items.map((item, index) => {
return <div key={index}><a href={item.mainContact.phoneHref + item.mainContact.phone}><i className="fa fa-phone"></i><strong> {item.mainContact.phone}</strong></a></div>
})
}
</nav>
</div>
<main className="content">
<Route exact path="/" component={About}/>
<Route path="/services" component={Services}/>
<Route path="/testimonials" component={Testimonials}/>
<Route path="/contact" component={Contact}/>
</main>
{this.state.items.map((item, index) => {
return <footer key={index}>&copy; Copyright {item.title} {(new Date().getFullYear())}</footer>
})
}
</div>
</HashRouter>
);
}
}
export default App;

我成功地映射了我的数据并显示了它,但是我还有其他文件包含这个片段

constructor(props) {
super(props);
this.state = {
items : []
};
}
componentDidMount(){
this.getItems();
}
getItems(){
fetch('./data/data_arr.js')
.then(results => results.json())
.then(results => this.setState({'items': results}));
}

我试过像这样在 helper.js 文件中导出 getItems() 并导入文件 import { getItems } from '../helpers/helpers'; 但是代码不起作用正确并卡在 Unhandled Rejection (TypeError): Cannot read property 'setState' of undefined

export function getItems() {
fetch('./data/data_arr.js')
.then(results => results.json())
.then(results => this.setState({'items': results}));
}

如果有人能给我一些关于错误/正确方法的指示,那将会很有帮助。干杯

最佳答案

当你想重用数据而不是一次又一次地调用 fetch 时,你需要知道的两件事

  1. 在最顶层组件(即父组件)中执行获取调用,并将数据传递给所有子组件,子组件再传递给子组件,但是请记住,这对您来说会很忙。当您构建最多包含 50 个组件的小型应用程序时,这种方法非常有用。但是,当您的应用程序变大时,这不是跨组件重用数据的推荐方法。

  2. 使用 Redux 状态管理库实现组件间的数据重用。这就像您的应用程序的集中存储。现在,这主要用于每个 React 应用程序。使用 Redux,您可以在父组件中进行操作调用,该操作实际上会获取数据并将其传递给 reducer。所以现在 reducer 将在 Redux store 中设置数据。现在,通过使用 state.get 从 Redux 存储中获取数据,可以在每个组件中访问数据。所以你可以像 this.props.getItems(); 这样调用 redux Action ;无论您在组件中需要什么数据,组件 mapStateToProps 都会将该数据作为 props 提供给您的组件

如何从 Redux store 获取数据?

在组件中定义一个函数 mapStateToProps 并使用 state.get 从 Redux 存储中获取数据并在函数中返回它。将 mapStateToProps 传递给 connect 方法。您将把您的组件连接到名为 connect 的 Redux HOC 组件。此 connect 方法接受操作和 Redux 状态,并将它们作为 props 提供给组件。

关于您的问题

   Unhandled Rejection (TypeError): Cannot read property 'setState' of undefined

您遇到此问题的原因是导出的 getItems 函数中没有此功能。

要解决此问题,您需要做的是将其作为参数传递给 getItems 函数

注意:这里是当前上下文

 import { getItems } from '../helpers/helpers';

componentDidMount(){
getItems(this);
}

helpers.js:

 the below function is treated as a normal JavaScript function. This function no wr belongs the component to bind it in component constructor. But in order to play with the state of the component you need to pass the component context this. But this is old way, now a days we all use Redux to avoid these old concepts

export function getItems(this) {
fetch('./data/data_arr.js')
.then(results => results.json())
.then(results => this.setState({'items': results}));
}

这样您就可以重用这个函数并执行 setState。

但是请记住,当您的应用程序在未来变大时,这些解决方案将会变得复杂。所以我建议你从现在开始使用 Redux 状态管理库,以避免将来的繁忙迁移:)

如果有任何打字错误,请原谅,因为我是用手机回答的。

关于javascript - React Reuse 在整个组件中获取 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52508723/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com