gpt4 book ai didi

javascript - 在 React 的 Axios getData 中使用 Prop 时,历史推送未定义

转载 作者:行者123 更新时间:2023-11-30 20:30:00 25 4
gpt4 key购买 nike

我试图通过添加来自父项的 Prop 来使这个帖子组件可重用。我的 Prop 是“路径名”和“过滤器”。我有一个要更新的数据库的路径名和允许我从该数据库中过滤掉数据的过滤器。它根据路径名和过滤器打印出帖子列表。这工作正常,我的帖子组件显示正确。

但是,当我向我的单个帖子添加点击功能以便它转到基于 post.id 的“FullPost”组件时,我收到一条错误消息,指出它“无法读取未定义的属性‘推送’”。当我不使用 Prop 而是对值进行硬编码时,它工作正常并且点击按预期工作,它会转到 FullPost 组件和基于 id 的 url。

我已经尝试打印出“this.props.history”,但它确实显示“undefined”。我不确定如何定义它以及为什么添加 props 会导致它未定义。

家长是这样调用它的:

<Route path="/food" exact render={() => <Posts pathname="/posts" filter="food" />} />

似乎 render() 方法不包含生命 Hook ,所以它不包含历史记录?但是,如果我不在路由中使用 render() 而不是 component={},我不确定如何包含我的 props。

代码如下:

import React, { Component } from 'react';
import axios from '../../../axiosPosts';

import Aux from '../../../hoc/Aux/Aux';
import classes from './Posts.css';
import Post from '../../../components/Post/Post';


class Posts extends Component {

state = {
posts: []
}

componentDidMount () {
//console.log('posts props: ', this.props.pathname, ', posts filter: ', this.props.filter, ', this props: ', this.props);
this.getData(this.props.pathname, this.props.filter);
}

getData(pathname, filter) {

axios.get(pathname + '.json')
.then(response => {
const post = response.data.filter(({category}) => category === filter);

const updatedPosts = post.map(post => {
return {
...post
}
});

this.setState({
posts: updatedPosts
});

console.log( 'history: ', this.props.history );
})
.catch(error => {
console.log(error);
});
}


postSelectedHandler = ( id ) => {
this.props.history.push( this.props.match.url + '/' + id );
}

render () {
let posts = <p style={{textAlign: 'center'}}>Whoops! Something went wrong.</p>;

if(!this.state.error) {
posts = this.state.posts.map(post => {
return (
<Post
key={post.id}
title={post.title}
dek={post.dek}
clicked={() => this.postSelectedHandler( post.id )} />
);
});
};
return (
<Aux>
<div className={classes.PostList}>
<h2 className={classes.PostListTitle}>{this.props.filter}</h2>
{posts}
</div>
</Aux>
)
}
}

export default Posts;

最佳答案

您错过了 route props :

<Route path="/food" exact render={(routeProps) => <Posts pathname="/posts" filter="food" {...routeProps} />} />

或者(如果您只需要历史):

<Route path="/food" exact render={({history}) => <Posts pathname="/posts" filter="food" history={history} />} />

关于javascript - 在 React 的 Axios getData 中使用 Prop 时,历史推送未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50459673/

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