質問編集履歴

1

コントローラー追記しました

2020/12/06 09:48

投稿

koyashika
koyashika

スコア1

test CHANGED
File without changes
test CHANGED
@@ -25,6 +25,12 @@
25
25
  よろしくお願い致します。
26
26
 
27
27
 
28
+
29
+ コントローラーのコード追記しました。
30
+
31
+ 情報不足ですみません、、
32
+
33
+ よろしくお願い致します。
28
34
 
29
35
 
30
36
 
@@ -75,3 +81,61 @@
75
81
 
76
82
 
77
83
  ```
84
+
85
+ ```ruby
86
+
87
+ class WeightsController < ApplicationController
88
+
89
+ def index
90
+
91
+ @weights = Weight.all
92
+
93
+ end
94
+
95
+
96
+
97
+ def new
98
+
99
+ @weight = Weight.new
100
+
101
+ end
102
+
103
+
104
+
105
+ def create
106
+
107
+ @weight = Weight.create(weight_params)
108
+
109
+ if @weight.save
110
+
111
+ redirect_to weights_path, notice: '体重が送信されました'
112
+
113
+ else
114
+
115
+ redirect_to weights_path, notice: '体重を送信してください'
116
+
117
+
118
+
119
+ end
120
+
121
+ end
122
+
123
+
124
+
125
+ private
126
+
127
+
128
+
129
+ def weight_params
130
+
131
+ params.permit(:kg).merge(user_id: current_user.id)
132
+
133
+ end
134
+
135
+ end
136
+
137
+
138
+
139
+
140
+
141
+ ```