1

我正在使用 carierwave 允许我的 rails 应用程序的用户将图像上传到他们的图库。如何创建允许用户上传新图像或从上传中选择以设置为个人资料图像的表单?

4

1 回答 1

0

只需将适当的属性添加到您的表单中,您就可以开始了。

举个例子:

 <%= 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 %>
于 2013-10-22T17:52:58.450 回答