var Index = React.createClass({render: function() {var date = new Date(this.props.user.registration_time);return (<Layout title="基本信息" user={this.props.user.user_name}><a href="/profile/profile/edit" className="btn btn-info" role="button"> 修改个人信息 </a><hr /> <p> 注册时间: {date} </p></Layout>);}});new Date()没有输出,why
4 回答
蓝山帝景
TA贡献1843条经验 获得超7个赞
html先得引用react.js。
<script type="text/javascript" src="react.js" ></script>
然后把js格式设置为jsx.
<script type="text/jsx" >
....这里就可以调用react的api了
</script>
添加回答
举报
0/150
提交
取消