对不起功能名称
我有一个基本的反应应用,它可以获取数据,即博客的标题和主题,并在网站上显示
这是我的列表组件
import React , {Component} from 'react';
import axios from 'axios'
import Card from './Card.js'
var cardComponent;
class getBlogs extends Component {
componentDidMount(){
axios.get('http://localhost:8081/v1/todolist/todo1', {})
.then( (response)=> {
this.setState({retrieved : true})
this.setState({data : response.data})
})
.catch(function (error) {
console.log(error);
});
}
constructor(){
super();
this.state = {
data : 'none' ,
retrieved : 'true'
}
}
onned = (event)=>{
console.log('lof')
}
oh = ()=>{
if(this.state.data !== 'none'){
cardComponent = this.state.data.map((user , i)=>{
var some = this.state.data;
console.log(some[i].title)
return <Card
onClick={this.onned()}
title={some[i].title}
topic={some[i].topic}
/> ;
});
return cardComponent;
}
}
render(){
if(this.state.retrieved === true){
return (
<div>{this.oh()}</div>
);
}
else{
return (
<h1>Loading............................</h1>
);
}
}
}
export default getBlogs;
正在获取数据,哦函数循环数据并发送到卡组件
Card.js
import React from 'react';
class Card extends React.Component {
constructor(props) {
super(props);
}
onDiv = (event)=>{
console.log('hello')
}
render() {
return (
<div className="container">
<div onClick ={this.onDiv()} style={{backgroundSize : 'cover'}} className=" form-control bg-light-green dib br3 pa3 ma2 grow bw2 shadow-5">
<div style={{marginLeft : '90px'}}>
<h1 style={{ textAlign : "center" , color : "red" , fontWeight : "bold"}} className="display-2">{this.props.title}</h1>
<h1 style={{ textAlign : "center" , color : "blue" , fontWeight : "bold"}} className="">{this.props.topic}</h1>
</div>
</div>
<br/>
<br/>
</div>
);
}
}
export default Card;
现在我想要的是,如果用户点击其中一个博客名称,它应该重定向到其他位置但是onClick of div无法正常工作
渲染本身时onClick得到执行
请不要downvote我可能会被阻止
答案 0 :(得分:0)
使用此onClick ={this.onDiv}
代替onClick ={this.onDiv()}
。而不是为onClick提供回调,而只是在那里调用函数