質問編集履歴

3

2020/07/31 12:11

投稿

_tonton_
_tonton_

スコア4

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 学習開始週間です。
5
+ 学習開始5週間です。
6
6
 
7
7
  記述に不備がありましたら、申し訳ありません。
8
8
 

2

タイトルの修正

2020/07/31 12:11

投稿

_tonton_
_tonton_

スコア4

test CHANGED
@@ -1 +1 @@
1
- Rubyで投稿画像一覧正常に表示されな
1
+ Rubyで投稿画像一覧正常に表示させた
test CHANGED
File without changes

1

試したことについて、コード修正

2020/07/31 08:05

投稿

_tonton_
_tonton_

スコア4

test CHANGED
@@ -1 +1 @@
1
- Rubyで投稿画像が正常に表示されない
1
+ Rubyで投稿画像一覧が正常に表示されない
test CHANGED
@@ -90,7 +90,7 @@
90
90
 
91
91
 
92
92
 
93
- image_tagで記述を変えても正常に表示されなかった
93
+ image_tagで記述を変えると一覧の表示が全て消えます
94
94
 
95
95
  - index.html.haml
96
96
 
@@ -98,13 +98,11 @@
98
98
 
99
99
  .post__new
100
100
 
101
- - if @posts.text.present?
101
+ = @post.text
102
102
 
103
- %p.post__new-text
103
+ .post__image
104
104
 
105
- = @posts.text
106
-
107
- = image_tag @posts.image.url, class: 'post__new-image' if @posts.image.present?
105
+ = image_tag @post.image.url if @post.image?
108
106
 
109
107
  ```
110
108