質問編集履歴
2
見づらいエラー内容を修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,19 +48,185 @@
|
|
48
48
|
|
49
49
|
Extracted source (around line #41):
|
50
50
|
|
51
|
+
|
52
|
+
|
53
|
+
39 # 問題の作成フォーム
|
54
|
+
|
55
|
+
40 <div class="question_create_form">
|
56
|
+
|
57
|
+
41 <%= form_for(@questions, url: home_userpage_path, method: :post) do |f| %>
|
58
|
+
|
59
|
+
42 <p>
|
60
|
+
|
61
|
+
43 <%= f.label :question_contents, "問題の本文を入力してください" %><br>
|
62
|
+
|
63
|
+
44 <%= f.text_area :question_contents %>
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
Rails.root: /Users/suzukikohya/myapp/sambo
|
68
|
+
|
51
|
-
|
69
|
+
コード
|
52
|
-
|
70
|
+
|
53
|
-
|
71
|
+
```
|
54
|
-
|
72
|
+
|
73
|
+
|
74
|
+
|
55
|
-
|
75
|
+
```
|
76
|
+
|
77
|
+
|
78
|
+
|
56
|
-
|
79
|
+
index.html.erb
|
80
|
+
|
81
|
+
<!-- body -->
|
82
|
+
|
83
|
+
<body>
|
84
|
+
|
85
|
+
<!-- container -->
|
86
|
+
|
87
|
+
<div class="container">
|
88
|
+
|
89
|
+
<div class="navbar">
|
90
|
+
|
91
|
+
<div class="navbar-header">
|
92
|
+
|
93
|
+
<div class="navbar-button">
|
94
|
+
|
95
|
+
<a class="navbar-title" href="/home/index"><h1>家事育児スキル認定アプリ</h1></a>
|
96
|
+
|
97
|
+
</div>
|
98
|
+
|
99
|
+
<form action="#" method="post">
|
100
|
+
|
101
|
+
<nav class="user-login">
|
102
|
+
|
103
|
+
<div class="user-icon" >
|
104
|
+
|
105
|
+
<img src="img/#" alt="user-icon">
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
<p>ユーザー名<br>
|
112
|
+
|
113
|
+
<input type="text" name="user-name"></p>
|
114
|
+
|
115
|
+
<p>パスワード<br>
|
116
|
+
|
117
|
+
<input type="text" name="user-password"></p>
|
118
|
+
|
119
|
+
<input type="checkbox" name="remember-me">Remember me
|
120
|
+
|
121
|
+
<a href="/forgot-password.html">Forgot Password</a>
|
122
|
+
|
123
|
+
<p><input type="button" value="Log in" id="login-button"></p>
|
124
|
+
|
125
|
+
<p><input type="button" value="Sign Up" id="signup-button"></p>
|
126
|
+
|
127
|
+
</nav>
|
128
|
+
|
129
|
+
</form>
|
130
|
+
|
131
|
+
</div>
|
132
|
+
|
133
|
+
</div>
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
<br>
|
138
|
+
|
139
|
+
<br>
|
140
|
+
|
141
|
+
<br>
|
142
|
+
|
143
|
+
<link_to "ログアウト", destroy_user_session_path, method: delete %>
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<div class="level-select">
|
148
|
+
|
149
|
+
<div class="easy-question"><a href="/views/easy-question.html">初級</a>
|
150
|
+
|
151
|
+
<p>初めての方はこちら</p>
|
152
|
+
|
153
|
+
</div>
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
<div class="normal-question"><a href="/views/normal-question.html">中級</a>
|
158
|
+
|
159
|
+
<p>人生の必須知識を<br>
|
160
|
+
|
161
|
+
身に着けましょう
|
162
|
+
|
163
|
+
</p>
|
164
|
+
|
165
|
+
</div>
|
166
|
+
|
167
|
+
<div class="hard-question"><a href="/views/hard-question.html">上級</a>
|
168
|
+
|
169
|
+
<p>「パートナー」はおまかせあれ</p>
|
170
|
+
|
171
|
+
</div>
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
</div>
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
</div>
|
180
|
+
|
181
|
+
<!-- /contaimer -->
|
182
|
+
|
183
|
+
|
184
|
+
|
57
|
-
|
185
|
+
コード
|
58
|
-
|
186
|
+
|
59
|
-
|
187
|
+
```
|
60
|
-
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
61
|
-
|
193
|
+
```
|
194
|
+
|
62
|
-
|
195
|
+
userpage.html.erb
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
<!-- body -->
|
200
|
+
|
201
|
+
<!-- Rubyのプログラムを埋め込むために、拡張子は.rbにしなければならない?or部分で埋め込むメソッドを使う? -->
|
202
|
+
|
203
|
+
<!-- この中身をeasy/normal/hardのクリックで振り分けるrubyプログラムを書く -->
|
204
|
+
|
205
|
+
<body>
|
206
|
+
|
207
|
+
<!-- container -->
|
208
|
+
|
209
|
+
<div class="container">
|
210
|
+
|
211
|
+
<div class="user-status">
|
212
|
+
|
213
|
+
<%= notice %>
|
214
|
+
|
215
|
+
<h1>ユーザーページ</h1>
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
<div class="user-icon"> <!-- ログイン中のユーザーのアイコンや情報を表示 -->
|
220
|
+
|
221
|
+
<img src="img/#" alt="user-icon" id=>
|
222
|
+
|
223
|
+
# 抜いたもの①戻す
|
224
|
+
|
225
|
+
</div>
|
226
|
+
|
227
|
+
|
228
|
+
|
63
|
-
# 問題の作成フォーム
|
229
|
+
# 問題の作成フォーム
|
64
230
|
|
65
231
|
<div class="question_create_form">
|
66
232
|
|
@@ -72,210 +238,34 @@
|
|
72
238
|
|
73
239
|
<%= f.text_area :question_contents %>
|
74
240
|
|
75
|
-
|
76
|
-
|
77
|
-
Rails.root: /Users/suzukikohya/myapp/sambo
|
78
|
-
|
79
|
-
コード
|
80
|
-
|
81
|
-
```
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
```
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
index.html.erb
|
90
|
-
|
91
|
-
<!-- body -->
|
92
|
-
|
93
|
-
<b
|
241
|
+
<br>
|
94
|
-
|
242
|
+
|
95
|
-
|
243
|
+
</p>
|
244
|
+
|
96
|
-
|
245
|
+
<p>
|
246
|
+
|
247
|
+
<%= f.label :answer_list, "答えを入力してください" %><br>
|
248
|
+
|
97
|
-
<
|
249
|
+
<%= f.text_area :answer_list %>
|
250
|
+
|
98
|
-
|
251
|
+
</p>
|
252
|
+
|
99
|
-
<
|
253
|
+
<%= f.submit "投稿する" %>
|
100
|
-
|
254
|
+
|
101
|
-
|
255
|
+
<% end %>
|
102
|
-
|
103
|
-
|
256
|
+
|
104
|
-
|
105
|
-
<a class="navbar-title" href="/home/index"><h1>家事育児スキル認定アプリ</h1></a>
|
106
|
-
|
107
|
-
|
257
|
+
</div>
|
108
|
-
|
109
|
-
|
258
|
+
|
110
|
-
|
111
|
-
<nav class="user-login">
|
112
|
-
|
113
|
-
|
259
|
+
<div class="created-question-list">
|
114
|
-
|
115
|
-
|
260
|
+
|
116
|
-
|
117
|
-
</div>
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
<p>ユーザー名<br>
|
122
|
-
|
123
|
-
<input type="text" name="user-name"></p>
|
124
|
-
|
125
|
-
<p>パスワード<br>
|
126
|
-
|
127
|
-
<input type="text" name="user-password"></p>
|
128
|
-
|
129
|
-
<input type="checkbox" name="remember-me">Remember me
|
130
|
-
|
131
|
-
|
261
|
+
<a href="home/created-question-list">作成済み問題一覧はこちら</a>
|
132
|
-
|
133
|
-
<p><input type="button" value="Log in" id="login-button"></p>
|
134
|
-
|
135
|
-
<p><input type="button" value="Sign Up" id="signup-button"></p>
|
136
|
-
|
137
|
-
</nav>
|
138
|
-
|
139
|
-
</form>
|
140
262
|
|
141
263
|
</div>
|
142
264
|
|
143
265
|
</div>
|
144
266
|
|
145
|
-
|
146
|
-
|
147
|
-
<br>
|
148
|
-
|
149
|
-
<br>
|
150
|
-
|
151
|
-
<br>
|
152
|
-
|
153
|
-
<link_to "ログアウト", destroy_user_session_path, method: delete %>
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
<div class="level-select">
|
158
|
-
|
159
|
-
<div class="easy-question"><a href="/views/easy-question.html">初級</a>
|
160
|
-
|
161
|
-
<p>初めての方はこちら</p>
|
162
|
-
|
163
|
-
</div>
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
<div class="normal-question"><a href="/views/normal-question.html">中級</a>
|
168
|
-
|
169
|
-
<p>人生の必須知識を<br>
|
170
|
-
|
171
|
-
身に着けましょう
|
172
|
-
|
173
|
-
</p>
|
174
|
-
|
175
|
-
</div>
|
176
|
-
|
177
|
-
<div class="hard-question"><a href="/views/hard-question.html">上級</a>
|
178
|
-
|
179
|
-
<p>「パートナー」はおまかせあれ</p>
|
180
|
-
|
181
|
-
</div>
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
</div>
|
186
|
-
|
187
|
-
|
188
|
-
|
189
267
|
</div>
|
190
268
|
|
191
|
-
<!-- /contaimer -->
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
コード
|
196
|
-
|
197
|
-
```
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
```
|
204
|
-
|
205
|
-
userpage.html.erb
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
<!-- body -->
|
210
|
-
|
211
|
-
<!-- Rubyのプログラムを埋め込むために、拡張子は.rbにしなければならない?or部分で埋め込むメソッドを使う? -->
|
212
|
-
|
213
|
-
<!-- この中身をeasy/normal/hardのクリックで振り分けるrubyプログラムを書く -->
|
214
|
-
|
215
|
-
<body>
|
216
|
-
|
217
|
-
<!-- container -->
|
218
|
-
|
219
|
-
<div class="container">
|
220
|
-
|
221
|
-
<div class="user-status">
|
222
|
-
|
223
|
-
<%= notice %>
|
224
|
-
|
225
|
-
<h1>ユーザーページ</h1>
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
<div class="user-icon"> <!-- ログイン中のユーザーのアイコンや情報を表示 -->
|
230
|
-
|
231
|
-
<img src="img/#" alt="user-icon" id=>
|
232
|
-
|
233
|
-
# 抜いたもの①戻す
|
234
|
-
|
235
|
-
</div>
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
# 問題の作成フォーム
|
240
|
-
|
241
|
-
<div class="question_create_form">
|
242
|
-
|
243
|
-
<%= form_for(@questions, url: home_userpage_path, method: :post) do |f| %>
|
244
|
-
|
245
|
-
<p>
|
246
|
-
|
247
|
-
<%= f.label :question_contents, "問題の本文を入力してください" %><br>
|
248
|
-
|
249
|
-
<%= f.text_area :question_contents %>
|
250
|
-
|
251
|
-
<br>
|
252
|
-
|
253
|
-
</p>
|
254
|
-
|
255
|
-
<p>
|
256
|
-
|
257
|
-
<%= f.label :answer_list, "答えを入力してください" %><br>
|
258
|
-
|
259
|
-
<%= f.text_area :answer_list %>
|
260
|
-
|
261
|
-
</p>
|
262
|
-
|
263
|
-
<%= f.submit "投稿する" %>
|
264
|
-
|
265
|
-
<% end %>
|
266
|
-
|
267
|
-
</div>
|
268
|
-
|
269
|
-
<div class="created-question-list">
|
270
|
-
|
271
|
-
<a href="home/created-question-list">作成済み問題一覧はこちら</a>
|
272
|
-
|
273
|
-
</div>
|
274
|
-
|
275
|
-
</div>
|
276
|
-
|
277
|
-
</div>
|
278
|
-
|
279
269
|
|
280
270
|
|
281
271
|
コード
|
1
エラー文記載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,6 +32,56 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
+
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
エラー内容
|
40
|
+
|
41
|
+
ArgumentError in Home#index
|
42
|
+
|
43
|
+
Showing /Users/suzukikohya/myapp/sambo/app/views/home/userpage.html.erb where line #41 raised:
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
First argument in form cannot contain nil or be empty
|
48
|
+
|
49
|
+
Extracted source (around line #41):
|
50
|
+
|
51
|
+
39
|
52
|
+
|
53
|
+
40
|
54
|
+
|
55
|
+
41
|
56
|
+
|
57
|
+
42
|
58
|
+
|
59
|
+
43
|
60
|
+
|
61
|
+
44
|
62
|
+
|
63
|
+
# 問題の作成フォーム
|
64
|
+
|
65
|
+
<div class="question_create_form">
|
66
|
+
|
67
|
+
<%= form_for(@questions, url: home_userpage_path, method: :post) do |f| %>
|
68
|
+
|
69
|
+
<p>
|
70
|
+
|
71
|
+
<%= f.label :question_contents, "問題の本文を入力してください" %><br>
|
72
|
+
|
73
|
+
<%= f.text_area :question_contents %>
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
Rails.root: /Users/suzukikohya/myapp/sambo
|
78
|
+
|
79
|
+
コード
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
|
84
|
+
|
35
85
|
```
|
36
86
|
|
37
87
|
|