How to upload a file in rails?

前端 未结 2 1023
你的背包
你的背包 2021-01-03 10:41

I\'m new to rails. I want to know about file uploading process in rails. Can anyone please help me... Thanks, Althaf

2条回答
  •  梦谈多话
    2021-01-03 10:57

    Usually gems/plugins are used to to handle file uploads. My favorite one, and perhaps the most ubiquitous is Paperclip.

    In your view, you'll have to tell the rails form helpers that you're uploading a file like this:

    <%= form_for @model, :html => { :multipart => true } do |form| %>
    

提交回复
热议问题