質問編集履歴
1
コードの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,17 @@
|
|
13
13
|
Undefined property:Controller名::$redirect
|
14
14
|
|
15
15
|
についてわかるかた教えてください。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
(追記)
|
20
|
+
|
21
|
+
エラーの該当行が、redirect先メソッドの先頭の行だったため、飛ぶ処理が原因かもとして考えています
|
22
|
+
|
23
|
+
```PHP
|
24
|
+
|
25
|
+
return $this->redirect(['action' => 'full',
|
26
|
+
|
27
|
+
'?' => ['uid' => $uid, 'displayYM' => $aYM]]);
|
28
|
+
|
29
|
+
```
|