有沒有更好的方式來保存一些字符串作爲附件通過Paperlip作爲一個tmp文件,將字符串放入它,再次打開並保存爲附件?回形針保存附件
像這樣:
def save_string data
tmp_file = "/some/path"
File.open(tmp_file,'w') do |f|
f.write(data)
end
File.open(tmp_file,'r') do |f|
ceneo_xml = f
save!
end
end
你爲什麼要這麼做? – Lichtamberg 2009-07-29 13:35:57