使用 seed-fu 来播种具有关联的数据(来自 csv)
我有一个包含国家和地区的大型 csv 文件(必须是电子表格可编辑的)。国家有很多地区。
该文件对于同一国家/地区有多行,即:
USA, New York
USA, Pennsylvania
等。
我想使用seed-fu 用这些信息为我的数据库播种。我认为我应该使用 Writer 获取 CSV 文件并生成种子文件,但我不确定如何在保留关联的同时执行此操作。有标准方法吗?
I have a large csv file (must be spreadsheet-editable) of countries and regions. Countries have_many regions.
The file has multiple lines for the same country, i.e:
USA, New York
USA, Pennsylvania
etc.
I'd like to use seed-fu to seed my database with this information. I think I should use Writer to take the CSV file and generate a seed file, but I'm not sure how to do this while retaining the associations. Is there a standard method for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终在没有作家的情况下完成了这件事。我的答案是:
I ended up doing this without Writer. My answer is: