摘要:
const numbers = [1, 2, 3, 4, 5]; const listItems = numbers.map((numbers) => {numbers} ); ReactDOM.render( {listItems}, document.getElementById('example') ); function ListItem(props) { // ...
阅读全文
posted @ 2018-11-14 20:05
沉默的末1993
阅读(118)
推荐(0)
编辑
posted @ 2018-11-14 19:53
沉默的末1993
阅读(95)
推荐(0)
编辑
摘要:
function ActionLink() { function handleClick(e) { e.preventDefault(); console.log('链接被点击'); } return ( 点我 ); } class Toggle extends React.Component { constructor...
阅读全文
posted @ 2018-11-14 19:49
沉默的末1993
阅读(92)
推荐(0)
编辑
摘要:
class WebSite extends React.Component { constructor() { super(); this.state = { name: "菜鸟教程", site: "https://www.runoob.com" } } render() { return ( ...
阅读全文
posted @ 2018-11-14 17:42
沉默的末1993
阅读(91)
推荐(0)
编辑
摘要:
function FormattedDate(props){ return ( 现在是{props.date} ) } class Clock extends React.Component{ constructor(props){ supper(props); this.state={date:new Date()}; } componentDidM...
阅读全文
posted @ 2018-11-14 17:29
沉默的末1993
阅读(91)
推荐(0)
编辑
摘要:
封装一个组件 组件的样式写在组件内的html中,写在组件标签不起作用。若要为某个元素增加样式,使用className
阅读全文
posted @ 2018-11-14 16:38
沉默的末1993
阅读(91)
推荐(0)
编辑