21
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

labelを使用しfile_fieldを消す方法

Posted at

1,やりたいこと 

アイコンをクリックすると画像を選択してアップロードできるように実装したい。

スクリーンショット 2019-08-11 19.40.53.png

2,画像をアップロードする機能を実装するには?

file_feildをコードに記述すると画像をアップロードすることができます。

file_filedとは、form_forで使用できるフォームです。

記述は以下の通り


= form_for [@group,@message] do |f|
        .message-box  
          %i.fa.fa-image
          = f.file_field :image
          = f.submit "Send",class: "submit-box" 

3,アイコンとfile_feildを紐づけるには?

アイコンをクリックして、画像を投稿できるようにするためには、アイコンとfile_fieldを紐づける必要があります。

= f.label :image, class: "form-image" do
   %i.fa.fa-image
   f.file_field :image

iタグとfile_fieldをlabelで囲むと、アイコンをクリックするとfile_filedがクリックされるように実装されます。

4,「ファイルを選択する」ボタンを消す

紐づけは完了しましたが、「ファイルを選択する」というボタンが画面上に表示されたままです。

スクリーンショット 2019-08-11 20.08.09.png

このボタンを消してあげましょう。

.form-image{
          input{
            display: none;
          }

stylesheetに以上のように記述するとボタンを消すことができます。

21
28
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?