1
之前導入CSV和編輯與AJAX我有一個CSV,我直接用進口:軌道4:提交
在CSVCSV.foreach(file.path, headers: @weigh_in_cols) do |row|
hashed_row = row.to_hash.except!(nil)
...
一列是scale_id
和我的導入功能嘗試找到與一個Client
相應scale_id
:
client = Client.find_by(scale_id: hashed_row["scale_id"])
,如果沒有客戶端存在,想我必須考慮到從clients
列表中選擇合適的client
的能力。
有沒有辦法在導入時編輯CSV,選擇正確的client
後,我可以用適當的scale_id
更新CSV?
(選擇用戶的方法是問題的範圍之外,我更關心的是編輯CSV導入時)
這是一個好主意,不知道爲什麼我沒有想到 –