質問編集履歴
3
追備
test
CHANGED
File without changes
|
test
CHANGED
@@ -126,41 +126,59 @@
|
|
126
126
|
|
127
127
|
```views
|
128
128
|
|
129
|
-
<div class="
|
129
|
+
<div class="chat-header">
|
130
130
|
|
131
|
-
<div class="
|
131
|
+
<div class="left-header">
|
132
132
|
|
133
|
-
<div class="
|
133
|
+
<div class="header-title">
|
134
134
|
|
135
|
-
<!-- 投稿したユーザー名情報を出力する -->
|
136
|
-
|
137
|
-
<%= maker.user.nickname %>
|
138
|
-
|
139
|
-
</div>
|
140
|
-
|
141
|
-
<
|
135
|
+
<%= link_to "ORIAPP", root_path, class: "header-title" %>
|
142
|
-
|
143
|
-
<!-- 投稿した時刻を出力する -->
|
144
|
-
|
145
|
-
<%= l maker.created_at %>
|
146
136
|
|
147
137
|
</div>
|
148
138
|
|
149
139
|
</div>
|
150
140
|
|
151
|
-
<div class="
|
141
|
+
<div class="right-herder">
|
152
142
|
|
153
|
-
<div class="
|
143
|
+
<div class="header-button">
|
154
144
|
|
155
|
-
<!-- 投稿したメッセージ内容を記述する -->
|
156
|
-
|
157
|
-
<%=
|
145
|
+
<%= "メーカー" %>
|
158
146
|
|
159
147
|
</div>
|
160
148
|
|
149
|
+
</div>
|
150
|
+
|
151
|
+
</div>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
<div class="messages">
|
156
|
+
|
157
|
+
<%= render partial: 'message', collection: @makers %>
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
<%= form_with model: @maker, class: 'form', local: true do |f| %>
|
164
|
+
|
165
|
+
<div class="form-input">
|
166
|
+
|
161
|
-
<%=
|
167
|
+
<%= f.text_field :content, class: 'form-message', placeholder: 'type a message' %>
|
168
|
+
|
169
|
+
<label class="form-image">
|
170
|
+
|
171
|
+
<span class="image-file">画像</span>
|
172
|
+
|
173
|
+
<%= f.file_field :image, class: 'hidden' %>
|
174
|
+
|
175
|
+
</label>
|
162
176
|
|
163
177
|
</div>
|
178
|
+
|
179
|
+
<%= f.submit '送信', class: 'form-submit' %>
|
180
|
+
|
181
|
+
<% end %>
|
164
182
|
|
165
183
|
</div>
|
166
184
|
|
2
追備
test
CHANGED
File without changes
|
test
CHANGED
@@ -104,6 +104,68 @@
|
|
104
104
|
|
105
105
|
|
106
106
|
|
107
|
+
```routes
|
108
|
+
|
109
|
+
Rails.application.routes.draw do
|
110
|
+
|
111
|
+
devise_for :users
|
112
|
+
|
113
|
+
root to: "categories#index"
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
resources :categories, only: [:index]
|
118
|
+
|
119
|
+
resources :makers, only: [:index, :create]
|
120
|
+
|
121
|
+
end
|
122
|
+
|
123
|
+
```
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
```views
|
128
|
+
|
129
|
+
<div class="message">
|
130
|
+
|
131
|
+
<div class="upper-message">
|
132
|
+
|
133
|
+
<div class="message-user">
|
134
|
+
|
135
|
+
<!-- 投稿したユーザー名情報を出力する -->
|
136
|
+
|
137
|
+
<%= maker.user.nickname %>
|
138
|
+
|
139
|
+
</div>
|
140
|
+
|
141
|
+
<div class="message-date">
|
142
|
+
|
143
|
+
<!-- 投稿した時刻を出力する -->
|
144
|
+
|
145
|
+
<%= l maker.created_at %>
|
146
|
+
|
147
|
+
</div>
|
148
|
+
|
149
|
+
</div>
|
150
|
+
|
151
|
+
<div class="lower-message">
|
152
|
+
|
153
|
+
<div class="message-content">
|
154
|
+
|
155
|
+
<!-- 投稿したメッセージ内容を記述する -->
|
156
|
+
|
157
|
+
<%= maker.content %>
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
<%= image_tag maker.image.variant(resize: '500x500'), class: 'message-image' if maker.image.attached? %>
|
162
|
+
|
163
|
+
</div>
|
164
|
+
|
165
|
+
</div>
|
166
|
+
|
167
|
+
```
|
168
|
+
|
107
169
|
|
108
170
|
|
109
171
|
### 補足情報(FW/ツールのバージョンなど)
|
1
追備
test
CHANGED
File without changes
|
test
CHANGED
@@ -111,3 +111,9 @@
|
|
111
111
|
|
112
112
|
|
113
113
|
このエラーが出る前にはparams内のcategories_urlをcategory.idと記述していたのですが、did you mean? categories_urlとエラーメッセージが出てきたので変更しました。
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
エラー解決のため御助言をいただけると嬉しいです。
|
118
|
+
|
119
|
+
よろしくお願いいたします。
|