20201120 week 23 day 05
O
- w21 hw3 50%。
R
- 無。
I
React components 傳 props 可以用 destruction,而且如果有對應到 attributes,還會自動轉換。
App.jsconst Component = () => { const [attributes, setAttributes] = useState({ value: 5, name: 'age' }); return ( <div> <input {...attributes} /> </div> ) }
output HTML
<input name="age" value="5" />
而且如果寫
onChange: () => {}
也會自動轉換成事件處理。
D
- w21 hw。