我在使用 React 和 useState 更新我的 todoList 时遇到问题...我应该尝试使用“推送”还是其他方式来更新我的列表?
非常感谢您 !!
import React, { useState } from "react";
const App = () => {
// State search et sa fonction de modification
const [search, setSearch] = useState("");
const updateSearch = (e) => {
setSearch(e.target.value);
console.log(search);
};
// State de liste et sa fonction de modification
const [list, setList] = useState([]);
const updateList = () => {
setList([...list, search]);
};
return (
<div>
<h1>Welcome on your todolist</h1>
<br />
<input type="text" onChange={updateSearch} value={search} />
<button onClick={updateList}>enter</button>
<ul></ul>
</div>
);
};
export default App;
慕森卡
桃花长相依
相关分类