URLで画像を取得する必要があります。Carrierwave urlで画像を取得
URLはhttp://img.wallsbay.com/large/2014/05/2665.jpgですが、2014と2665は変更されています。
def image_params
params.require(:image).permit(:content, :remote_content_url, :id)
end
を、私は、このようなURLから画像を取得しようとしました::
私のコントローラは、これはparamsはい
@image.remote_content_url = 'http://img.wallsbay.com/large/#{:content}/05/#{:id}jpg'
しかしremote_content_urlが未定義のメソッドです。
うん、私は知っているが、私はそれのようなものを望んでいる:https://github.com/carrierwaveuploader/carrierwave/wiki/How-to:-Upload-remote-image-urls-to-your-seedfile – Salanoid