質問編集履歴
5
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,9 +46,43 @@
|
|
46
46
|
|
47
47
|
>![![![イメージ](01422da96cc8791d71a1e29eeb4d5dce.png)説明](6b982544c0c19d64acc35db99515600c.png)説明](d099e975310a65d462ebe6880ce6a4a3.png)](0ce9a53e934ade1e9c51445e15002a0f.png)
|
48
48
|
|
49
|
+
```Rails.application.routes.draw do
|
50
|
+
|
51
|
+
# For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
|
52
|
+
|
53
|
+
get 'hello/index' => 'hello#index'
|
54
|
+
|
55
|
+
get 'hello/link' => 'hello#link'
|
56
|
+
|
57
|
+
get 'posts' => 'posts#index'
|
58
|
+
|
59
|
+
get 'posts/new' => 'posts#new'
|
60
|
+
|
61
|
+
root 'hello#index'
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
コード
|
68
|
+
|
69
|
+
```
|
70
|
+
|
49
71
|
|
50
72
|
|
51
73
|
![イメージ説明](cd0f91c265758de99ae70b29807551a6.png)
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```My name is GeekSalon.
|
78
|
+
|
79
|
+
<%= link_to 'トップページ', hello_index_path %>
|
80
|
+
|
81
|
+
<%= link_to '一覧表示', posts_path %>
|
82
|
+
|
83
|
+
コード
|
84
|
+
|
85
|
+
```
|
52
86
|
|
53
87
|
|
54
88
|
|
@@ -56,11 +90,81 @@
|
|
56
90
|
|
57
91
|
|
58
92
|
|
93
|
+
```Enjoy programming!
|
94
|
+
|
95
|
+
<%= link_to "新規ページへ", posts_new_path %>
|
96
|
+
|
97
|
+
コード
|
98
|
+
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
|
59
103
|
![イメージ説明](cf77b40e47729c9a8f26aeff7bf194dd.png)
|
60
104
|
|
61
105
|
|
62
106
|
|
107
|
+
```
|
108
|
+
|
109
|
+
<h1>ToDoアプリ</h1>
|
110
|
+
|
111
|
+
<h3>新規</h3>
|
112
|
+
|
113
|
+
<%= form_for @post do |f| %>
|
114
|
+
|
115
|
+
<div class="field">
|
116
|
+
|
117
|
+
<%= f.label :body %>
|
118
|
+
|
119
|
+
<%= f.text_field :body, :size => 140 %>
|
120
|
+
|
121
|
+
</div>
|
122
|
+
|
123
|
+
<%= f.submit "postする" %>
|
124
|
+
|
125
|
+
<% end %>
|
126
|
+
|
127
|
+
<%= link_to "一覧に戻る", posts_path %>
|
128
|
+
|
129
|
+
コード
|
130
|
+
|
131
|
+
```
|
132
|
+
|
133
|
+
|
134
|
+
|
63
135
|
![イメージ説明](256eaa76a0f267b19c6ed25903790ad6.png)
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
```
|
140
|
+
|
141
|
+
class PostsController < ApplicationController
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
def index
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
end
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
def new
|
154
|
+
|
155
|
+
@post = Post.new
|
156
|
+
|
157
|
+
end
|
158
|
+
|
159
|
+
end
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
コード
|
164
|
+
|
165
|
+
```
|
166
|
+
|
167
|
+
|
64
168
|
|
65
169
|
|
66
170
|
|
4
写真の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,6 +62,10 @@
|
|
62
62
|
|
63
63
|
![イメージ説明](256eaa76a0f267b19c6ed25903790ad6.png)
|
64
64
|
|
65
|
+
|
66
|
+
|
67
|
+
![イメージ説明](ad1e258ab35f97a2ed4db312b38c8aee.png)
|
68
|
+
|
65
69
|
### 試したこと
|
66
70
|
|
67
71
|
タイプミスがないか探したりしたが分からなかった。
|
3
タイトルを変えた
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
newアクションを設定したい
|
test
CHANGED
File without changes
|
2
写真の追加
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
newアクションを設定したい
|
1
|
+
しゃnewアクションを設定したい
|
test
CHANGED
@@ -42,51 +42,25 @@
|
|
42
42
|
|
43
43
|
ソースコード
|
44
44
|
|
45
|
-
<h1>ToDoアプリ</h1>
|
46
45
|
|
47
|
-
<h3>新規</h3>
|
48
46
|
|
49
|
-
<%= form_for @post do |f| %>
|
50
|
-
|
51
|
-
<div class="field">
|
52
|
-
|
53
|
-
<%= f.label :body %>
|
54
|
-
|
55
|
-
|
47
|
+
>![![![イメージ](01422da96cc8791d71a1e29eeb4d5dce.png)説明](6b982544c0c19d64acc35db99515600c.png)説明](d099e975310a65d462ebe6880ce6a4a3.png)](0ce9a53e934ade1e9c51445e15002a0f.png)
|
56
|
-
|
57
|
-
</div>
|
58
|
-
|
59
|
-
<%= f.submit "追加する" %>
|
60
|
-
|
61
|
-
<% end %>
|
62
|
-
|
63
|
-
<%= link_to "一覧に戻る", posts_path %>
|
64
|
-
|
65
|
-
---```ここに言語を入力
|
66
48
|
|
67
49
|
|
68
50
|
|
69
|
-
get 'hello/index' => 'hello#index'
|
70
|
-
|
71
|
-
get 'hello/link' => 'hello#link'
|
72
|
-
|
73
|
-
|
51
|
+
![イメージ説明](cd0f91c265758de99ae70b29807551a6.png)
|
74
|
-
|
75
|
-
get 'posts/new' => 'posts#new'
|
76
|
-
|
77
|
-
post 'posts' => 'posts#create'
|
78
|
-
|
79
|
-
root 'hello#index'
|
80
52
|
|
81
53
|
|
82
54
|
|
83
|
-
en
|
55
|
+
![イメージ説明](f5e62b9d7252e5a49909c9d4ac6f0698.png)
|
84
56
|
|
85
57
|
|
86
58
|
|
87
|
-
|
59
|
+
![イメージ説明](cf77b40e47729c9a8f26aeff7bf194dd.png)
|
88
60
|
|
61
|
+
|
62
|
+
|
89
|
-
|
63
|
+
![イメージ説明](256eaa76a0f267b19c6ed25903790ad6.png)
|
90
64
|
|
91
65
|
### 試したこと
|
92
66
|
|
1
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,13 +32,61 @@
|
|
32
32
|
|
33
33
|
end
|
34
34
|
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
|
40
|
+
|
35
41
|
```ここに言語名を入力 ruby on rails
|
36
42
|
|
37
43
|
ソースコード
|
38
44
|
|
45
|
+
<h1>ToDoアプリ</h1>
|
46
|
+
|
47
|
+
<h3>新規</h3>
|
48
|
+
|
49
|
+
<%= form_for @post do |f| %>
|
50
|
+
|
51
|
+
<div class="field">
|
52
|
+
|
53
|
+
<%= f.label :body %>
|
54
|
+
|
55
|
+
<%= f.text_field :text, :size => 140 %>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<%= f.submit "追加する" %>
|
60
|
+
|
61
|
+
<% end %>
|
62
|
+
|
63
|
+
<%= link_to "一覧に戻る", posts_path %>
|
64
|
+
|
39
|
-
```
|
65
|
+
---```ここに言語を入力
|
40
66
|
|
41
67
|
|
68
|
+
|
69
|
+
get 'hello/index' => 'hello#index'
|
70
|
+
|
71
|
+
get 'hello/link' => 'hello#link'
|
72
|
+
|
73
|
+
get 'posts' => 'posts#index'
|
74
|
+
|
75
|
+
get 'posts/new' => 'posts#new'
|
76
|
+
|
77
|
+
post 'posts' => 'posts#create'
|
78
|
+
|
79
|
+
root 'hello#index'
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
コード
|
88
|
+
|
89
|
+
```
|
42
90
|
|
43
91
|
### 試したこと
|
44
92
|
|