React (i)

Source: Internet
Author: User



Prop Instances


<div id="app"></div>
<script src="bower_components/react/react.min.js"></script>
<script src="bower_components/react/react-dom.min.js"></script>
<script src="lib/babel-core/browser.min.js"></script>
<script type="text/babel">
var MessageBox = React.createClass({
getInitialState: function () {
Return {
isVisible: true,
Titlemessage: "Hello World (from state oh)",
subMessages: [
"I'll code the bricks.",
"And fancy brick handling,",
"No, the foreman told me to go back and move the bricks..... '
]
}
}
render: function () {
Return (
<div>
<h1>{this.state.titleMessage}</h1>
<SubMessage messages={this.state.subMessages} />
</div>
)
}
};
var SubMessage = React.createClass({
PropTypes: {
messages: React.PropTypes.array.isRequired
}
getDefaultProps: function () {
Return {
Messages: ['default sub message '] / / prevent this.props.messages from not existing
}
}
render: function () {
var msgs = [];
this.props.messages.forEach(function (msg, index) {
Msgs.push (
<p>Menon said: {MSG}</p>
);
};
Return (
<div>{msgs}</div>
)
}
};
var messageBox = ReactDOM.render(
<MessageBox/>,
document.getElementById(‘app‘)
);
</script> 





React (i)


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.