Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 carierwave 允许我的 rails 应用程序的用户将图像上传到他们的图库。如何创建允许用户上传新图像或从上传中选择以设置为个人资料图像的表单?
只需将适当的属性添加到您的表单中,您就可以开始了。
举个例子:
<%= form_for @user, :html => {:multipart => true} do |f| %> <p> <label>My Avatar URL:</label> <%= image_tag(@user.avatar_url) if @user.avatar? %> <%= f.text_field :remote_avatar_url %> </p> <% end %>