admin管理员组文章数量:1348081
I have a parent ponent that contains a child ponent:
return(
<ChildComponent state={this.getState} />
);
Inside m child ponent:
return(
<Avatar src="./picture" />
);
I want to change the source based on the state of the parent. For example if the state of the parent was 1 i the source will be picture1 or if the state was 2 the source would be picture2 and if the state was 3 it would be picture 3. I'm not sure what the syntax would be to plete the child's image source. Would it be something like this:
<Avatar src="'./picture' + this.props.state + '.jpg'"/>
EDIT: just wanted to make it clear I am using a material UI ponent called avatar. (changed img to avatar) Documentation:
I have a parent ponent that contains a child ponent:
return(
<ChildComponent state={this.getState} />
);
Inside m child ponent:
return(
<Avatar src="./picture" />
);
I want to change the source based on the state of the parent. For example if the state of the parent was 1 i the source will be picture1 or if the state was 2 the source would be picture2 and if the state was 3 it would be picture 3. I'm not sure what the syntax would be to plete the child's image source. Would it be something like this:
<Avatar src="'./picture' + this.props.state + '.jpg'"/>
EDIT: just wanted to make it clear I am using a material UI ponent called avatar. (changed img to avatar) Documentation: http://www.material-ui./#/ponents/avatar
Share Improve this question edited Jan 8, 2016 at 7:41 ogk asked Jan 8, 2016 at 7:38 ogkogk 6224 gold badges13 silver badges28 bronze badges2 Answers
Reset to default 5The child ponent should not get the state from the parent, but the props:
return(
<ChildComponent number={this.state.number} />
);
Then you can use the props to construct a source (notice that the number
prop is a javascript expression and not a string like in your example):
return(
<Avatar src={"./picture" + this.props.number + ".jpg"} />
);
In this case instead of ""
use {}
like this
var ChildComponent = React.createClass({
render: function() {
return <Avatar src={'./picture' + this.props.src + '.jpg'}/>
}
});
var ParentComponent = React.createClass({
getInitialState: function () {
return { counter: 0 }
},
handleNext: function () {
this.setState({
counter: this.state.counter + 1
});
},
handlePrev: function () {
this.setState({
counter: this.state.counter - 1
});
},
render: function() {
return <div>
<ChildComponent src={this.state.counter} />
<div>
<button onClick={this.handleNext}>Next</button>
<button onClick={this.handlePrev}>Prev</button>
</div>
</div>;
}
});
本文标签: javascriptSyntax to change image source based on states and props in reactStack Overflow
版权声明:本文标题:javascript - Syntax to change image source based on states and props in react - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743845390a2549021.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论