我正在努力建立在为我创造的东西的基础上,我对此非常陌生,所以要善待!
我有9个按钮,每个按钮在单击时显示不同的图像。这部分已经完成并且工作正常。现在我需要每个按钮也显示不同的文字。我无法得到它......
所以......这就是:
var Form = React.createClass({
getInitialState: function(){
return {shirtState:'button',
image:null,
color:'white',
colornotice: 'white shirt temp',
shirtName:'',
bandName:'',
bandcampUrl:''}
},
handleColorChange: function(e){
e.preventDefault();
color = e.target.value
this.setState({color: color, colornotice: color +' THIS TEXT NEEDS TO CHANGE FOR EACH BUTTON'})
},
该部分说“这篇文章需要改变每个按钮"显然需要根据点击的按钮进行更改。
以下是按钮:
<div className="buttons">
<button className="color color-white" onClick={this.handleColorChange} value="white"></button>
<button className="color color-black" onClick={this.handleColorChange} value="black"></button>
<button className="color color-blue" onClick={this.handleColorChange} value="blue"></button>
<button className="color color-green" onClick={this.handleColorChange} value="green"></button>
<button className="color color-orange" onClick={this.handleColorChange} value="orange"></button>
<button className="color color-pink" onClick={this.handleColorChange} value="pink"></button>
<button className="color color-purple" onClick={this.handleColorChange} value="purple"></button>
<button className="color color-red" onClick={this.handleColorChange} value="red"></button>
<button className="color color-yellow" onClick={this.handleColorChange} value="yellow"></button>
</div>
因此,每个按钮都需要有不同的预定文本代替此代码段:
{this.state.colornotice}
我提到的每个按钮clcik上发生的图像选择是在CSS中确定的。那部分完美无缺。这是其中的一部分:
.color-blue{
background: #fff image-url("Blue-Transparent_2300x2415.png");
background-repeat: no-repeat;
background-position: center 0px;
background-size: cover;
依此类推......适用于所有9个按钮。
希望这是有道理的。谢谢你的帮助!!!
答案 0 :(得分:0)
利用props
:
(使用ES6和ES7语法的示例,但您会明白这一点)
Button.js
import React, { PropTypes } from 'react';
export default class Button {
static propTypes = {
buttonText = PropTypes.string
}
render() {
return (
<button value={this.props.buttonText}></button>
);
}
}
Parent.js
import React, { PropTypes } from 'react';
import Button from './Button';
export default class Parent extends Component {
constructor() {
super();
this.state = {
text: ['red', 'blue', 'orange']
}
}
render() {
let buttons = this.state.text.map(color => <Button buttonText={color} />);
return (
<div>
{buttons}
</div>
);
}
}
答案 1 :(得分:0)
想想我明白了!
switch(color) {
case 'white':
// do this and that
this.setState({color: color, colornotice: color +' shirt temp1'})
break;
case 'red':
// do this and that
this.setState({color: color, colornotice: color +' shirt temp2'})
break;
default:
this.setState({color: color, colornotice: color +' shirt temp'})
}