質問編集履歴

3

その後の変更点

2019/09/17 14:35

投稿

pokepon_110
pokepon_110

スコア14

test CHANGED
File without changes
test CHANGED
@@ -121,3 +121,51 @@
121
121
  end
122
122
 
123
123
  ```
124
+
125
+
126
+
127
+ **ご指摘後の変更点**
128
+
129
+
130
+
131
+ form_forからform_withに変更
132
+
133
+ rails c →「@contact=Contact.new(email:"address",message:"aaaaaaa")」
134
+
135
+ @contact.saveで保存。
136
+
137
+
138
+
139
+ エラー内容が変わり、「ArgumentError」になりました。
140
+
141
+
142
+
143
+ ```
144
+
145
+ ArgumentError in Contacts#new
146
+
147
+ Showing /Users/name/projects/rails_test/app/views/contacts/new.html.erb where line #4 raised:
148
+
149
+
150
+
151
+ wrong number of arguments (given 1, expected 0)
152
+
153
+ Extracted source (around line #4):
154
+
155
+
156
+
157
+ <p>Find me in app/views/contacts/new.html.erb</p>
158
+
159
+
160
+
161
+ <%= form_with @contact do |f| %> ⇦ここでエラー
162
+
163
+
164
+
165
+ <div class="form-group">
166
+
167
+ <%= f.label :email, '返信先メールアドレス' %>
168
+
169
+
170
+
171
+ ```

2

エラー文を変更

2019/09/17 14:35

投稿

pokepon_110
pokepon_110

スコア14

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
  エラーの解決方法を教えていただきたいです。
16
16
 
17
+ ```
18
+
17
19
  Showing /Users/username/projects/rails_test/app/views/contacts/new.html.erb where line #4 raised:
18
20
 
19
21
 
@@ -22,7 +24,7 @@
22
24
 
23
25
  Did you mean? contacts_new_path
24
26
 
25
-
27
+ ```
26
28
 
27
29
  以下コードです。
28
30
 

1

エラー文を追加しました

2019/09/17 14:25

投稿

pokepon_110
pokepon_110

スコア14

test CHANGED
File without changes
test CHANGED
@@ -13,6 +13,16 @@
13
13
 
14
14
 
15
15
  エラーの解決方法を教えていただきたいです。
16
+
17
+ Showing /Users/username/projects/rails_test/app/views/contacts/new.html.erb where line #4 raised:
18
+
19
+
20
+
21
+ undefined method `contacts_path' for #<#<Class:0x00007fef2a3f9280>:0x00007fef2c08aa98>
22
+
23
+ Did you mean? contacts_new_path
24
+
25
+
16
26
 
17
27
  以下コードです。
18
28