大家好我使用回形針,Dropbox的寶石> = 1.1.7能夠將圖像上傳到Dropbox的,但不能得到和圖像URL存儲在數據庫
那麼這裏是我的屬性:
- 化身
- avatar_file_name
- avatar_content_type
- avatar_file_size:
- avatar_updated_at:
,在我的形式: = f.file_field :avatar
並在我的模型 has_attached_file :avatar, :storage => :dropbox, :dropbox_credentials => Rails.root.join("config/dropbox.yml"), :dropbox_visibility => 'public'
然後當我添加圖像,我可以上傳圖片dropbox和 這些屬性有一個值avatar_content_type,avatar_file_size,avatar_updated_at 但它不能存儲上傳的圖像url。請幫忙謝謝!
PS。我正在使用非高級Dropbox帳戶和我們上傳到Dropbox的Apps/my_images文件夾中的圖像。
您可以詳細說明您嘗試存儲的URL以及您無法訪問的原因嗎?上傳到Dropbox的文件並非真正擁有網址,除非您使用/ shares或/ media這樣的API調用來獲得可共享/可流式鏈接。除此之外,你是否得到任何錯誤? – Greg