2

我有一个问题,我的 simple_form 需要图像文件上传字段和图像 url 输入。

我如何验证它是图像文件上传字段或图像 url 应该被要求而不是两者。

我在另一个控制器中的视图:

            <%= f.simple_fields_for :photo_attributes do |d| %>
<%= d.label :image, :label => 'Upload logo'  %>
<%= d.file_field :image, :label => 'Image'  %>
<%= d.input :image_url, :label => 'Billed URL' %>
<% end %>

我的照片模型:

require 'open-uri'

class Photo < ActiveRecord::Base
  belongs_to :virksomhed
  attr_accessor :image_url

  has_attached_file :image,
                  :url  => "/public/images/billeder/photo/:id/:basename.:extension",
                  :path => ":rails_root/public/images/:id/:basename.:extension"

  before_validation :download_remote_image, :if => :image_url_provided?

  validates_presence_of :image_remote_url, :if => :image_url_provided?, :message => 'is invalid or inaccessible'

private

  def image_url_provided?
    !self.image_url.blank?
  end

  def download_remote_image
    self.image = do_download_remote_image
    self.image_remote_url = image_url
  end

  def do_download_remote_image
    io = open(URI.parse(image_url))
    def io.original_filename; base_uri.path.split('/').last; end
    io.original_filename.blank? ? nil : io
  rescue # catch url errors with validations instead of exceptions (Errno::ENOENT, OpenURI::HTTPError, etc...)
  end

end
4

3 回答 3

2

正确的形式是::with => %r{.(png|jpg|jpeg)$}i,

否则它将允许 file.git.something

于 2013-12-20T03:33:49.103 回答
1

如果您正在谈论在视图中标记所需的字段,SimpleForm 默认将每个字段标记为必填 (*)。它在自述文件中这么说,并附有一个关于如何覆盖它的示例(必需 => false)。

在您的模型中,我会执行以下操作:

validate_presence_of :file_field, :unless => :image_url_provided?
于 2011-09-30T21:25:05.033 回答
1
validates :image_url, allow_blank: true, format: {
  with: %r{\.gif|jpg|png}i,
  message: 'must be a url for gif, jpg, or png image.'
}
于 2012-07-24T02:36:10.660 回答