我有这一方法,即“顶点”,基本上包括其他论点、档案选择或某些案文。 如果卷宗(File. open(“test.txt”, r+ )通过,上载(:file =>......),那么,这种方法从文本档案中读到,或者如果某人决定不在txt文档中通过同一文本,他可以上载(:content =>); ......
但是,我要么需要一份案文文件,要么需要案文本身通过,那么你如何这样做?
这里是我迄今为止所做的。
def upload(args)
if args[:content].present?
self.content = args[:content]
elsif args[:file].present?
self.content = args[:file].read
end
end
感谢!