Record daily

高豪
2023-12-01

1、利用…展开运算符直接传入,代替push

let i = [1,2,3,4]
i = [
	...i,
	5
]

2、react的for循环列表&点击事件

const event = aug => {
	console.log(aug)
}
return (
	<section>
		<ol>
			{i.map(num=>{
				<li key{num} onclick={()=>{event(aug)}}>{num}</li>
			})
		</ol>
	</section>
)
 类似资料:

相关阅读

相关文章

相关问答