[React/Rails] 台灣區縣市、區域的下拉選單
大略貼上如何在Rails內寫台灣區的下拉選單
html(react_component 為 react_on_rails gem)
不論是先給區域或者給區域代碼,初始值都會出現相同結果。
操作GIF:
元件內容(使用react hook)
使用的台灣區資料 ➡️ (連結)
問題
- A component is changing a controlled input of type text to be uncontrolled. Input elements should not switch from controlled to uncontrolled (or vice versa)
當value={undefined}
為uncontrolled component,若value裡面的值為預期內則為controlled component,當使用short circuit evaluation即可移除(在上面的101行使用)。
有討論串問說可不可以把這條警示移除