質問編集履歴

2

再追記

2021/05/10 08:21

投稿

momolength
momolength

スコア62

test CHANGED
File without changes
test CHANGED
@@ -123,3 +123,21 @@
123
123
  ```
124
124
 
125
125
  というエラーが出ました。おかしいですね...ちゃんと書いたつもりなんですが。
126
+
127
+
128
+
129
+
130
+
131
+ 再追記
132
+
133
+ ビューに
134
+
135
+ ```ここに言語を入力
136
+
137
+ $this->render('/TestFruit/index');
138
+
139
+ ```
140
+
141
+ と入力したところ繋がりました。(正規の手順。。。?なのか)
142
+
143
+ なぜこれで繋がったんですか?

1

追記

2021/05/10 08:21

投稿

momolength
momolength

スコア62

test CHANGED
File without changes
test CHANGED
@@ -87,3 +87,39 @@
87
87
 
88
88
 
89
89
  と怒られます。何が間違っていますか?
90
+
91
+
92
+
93
+
94
+
95
+ 追記
96
+
97
+ ご教授いただいた通り、ルートを見つけ追記してみました。
98
+
99
+ route.php
100
+
101
+ ```ここに言語を入力
102
+
103
+ Router::connect('/test_fruit', array('controller' => 'TestFruit', 'action' => 'index'));
104
+
105
+ Router::connect('/test_fruit/:action', array('controller' => 'TestFruit'));
106
+
107
+ ```
108
+
109
+ としたところ、
110
+
111
+ ```ここに言語を入力
112
+
113
+ Missing View
114
+
115
+ Error: The view for TestFruitController::index() was not found.
116
+
117
+
118
+
119
+ Confirm you have created the file: TestFruit\index.ctp in one of the following paths:
120
+
121
+ .........
122
+
123
+ ```
124
+
125
+ というエラーが出ました。おかしいですね...ちゃんと書いたつもりなんですが。