1

我在 Rhomobile 中看到我们可以从本地文件中播种本地数据库。该文件需要是文本文件,格式是这样的,

client_id|last_sync_success
67320d31-e42e-4156-af91-5d9bd7175b08|

但是我可以用某种方法从 csv 文件中播种数据吗?

4

1 回答 1

1

你可以使用类似下面的东西,

# For seeding question to question table from question.csv file
if MyModel.find(:all).empty?
  file_name = File.join(Rho::RhoApplication.get_app_path('public')+'sample.csv')
  file = File.new(file_name, "r")
  while (line = file.gets)
    col = (line.gsub("\n", "")).split(";")
    MyModel.create( {"id" => col[0].gsub('"',''), "text" => col[1].gsub('"','')} )
  end
end

希望这对您有所帮助。

于 2013-09-16T03:36:00.657 回答