ant-design/components/rate/demo/text.md

42 lines
659 B
Markdown
Raw Normal View History

2016-04-01 10:12:02 +08:00
---
order: 2
title:
zh-CN: 文案展现
en-US: Show copywriting
2016-04-01 10:12:02 +08:00
---
2016-03-31 14:43:38 +08:00
## zh-CN
2016-03-31 14:43:38 +08:00
给评分组件加上文案展示。
## en-US
Add copywriting in rate components.
2016-03-31 14:43:38 +08:00
````jsx
import { Rate } from 'antd';
const Rater = React.createClass({
getInitialState() {
return {
value: 3,
count: null,
};
},
handleChange(value) {
this.setState({ value });
},
render() {
const { value } = this.state;
return (
<span>
<Rate onChange={this.handleChange} value={value} />
{value && <span className="ant-rate-text">{value} 星</span>}
</span>
);
2016-05-11 09:32:33 +08:00
},
2016-03-31 14:43:38 +08:00
});
ReactDOM.render(<Rater />, mountNode);
````