前提
cakephp:2.x
入力画面があり、入力した後にボタンを押すと、入力された内容がDBに保存される画面を作っています。
発生している問題・エラーメッセージ
POST http://localhost/car-maintenance/estimation_documents/detail 403 (Forbidden)
<pre class="cake-error"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr5f97a48b6906c-trace').style.display = (document.getElementById('cakeErr5f97a48b6906c-trace').style.display == 'none' ? '' : 'none');"><b>Warning</b> (2)</a>: Missing argument 1 for EstimationDocumentsController::detail() [<b>APP\Controller\EstimationDocumentsController.php</b>, line <b>36</b>]<div id="cakeErr5f97a48b6906c-trace" class="cake-stack-trace" style="display: none;"><a href="javascript:void(0);" onclick="document.getElementById('cakeErr5f97a48b6906c-code').style.display = (document.getElementById('cakeErr5f97a48b6906c-code').style.display == 'none' ? '' : 'none')">Code</a> <a href="javascript:void(0);" onclick="document.getElementById('cakeErr5f97a48b6906c-context').style.display = (document.getElementById('cakeErr5f97a48b6906c-context').style.display == 'none' ? '' : 'none')">Context</a><pre id="cakeErr5f97a48b6906c-code" class="cake-code-dump" style="display: none;"><code><span style="color: #000000"><span style="color: #0000BB"> </span><span style="color: #007700">* </span><span style="color: #0000BB">見積情報を取得する。 </span></span></code> <code><span style="color: #000000"><span style="color: #0000BB"> </span><span style="color: #007700">*/ </span></span></code> <span class="code-highlight"><code><span style="color: #000000"><span style="color: #0000BB"> </span><span style="color: #007700">public function </span><span style="color: #0000BB">detail</span><span style="color: #007700">(</span><span style="color: #0000BB">$estimationNo</span><span style="color: #007700">) { </span></span></code></span></pre><pre class="stack-trace">EstimationDocumentsController::detail() - APP\Controller\EstimationDocumentsController.php, line 36 ReflectionMethod::invokeArgs() - [internal], line ?? Controller::invokeAction() - CORE\Cake\Controller\Controller.php, line 490 Dispatcher::_invoke() - CORE\Cake\Routing\Dispatcher.php, line 185 Dispatcher::dispatch() - CORE\Cake\Routing\Dispatcher.php, line 160 [main] - APP\webroot\index.php, line 108</pre></div></pre>{"error":{"message":"\u4ed5\u69d8\u3067\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u306a\u3044METHOD\u3067\u3059\u3002"}}
該当のソースコード
cakephp
1public function index() { 2 if($this->request->is('post')){ 3 if($this->EstimationDocuments->saveAssociated($this->data)) { 4 $test_alert = "<script type='text/javascript'>alert('保存しました。');</script>"; 5 echo $test_alert; 6 return json_encode(['success' => 'success', 'data' => $this->request->data]); 7 }else{ 8 $this->response->statusCode(500); 9 return json_encode(['error' => ['message' => '保存に失敗しました。']]); 10 } 11 } 12}
HTML
1<?php echo $this->Form->create('EstimationDocuments', ['id' => 'estimationdocumentEditForm', 2 'action' => 'detail', 3 'submit' => 'return false', 4 'inputDefaults' => ['label' => false, 'div' => false, 'legend' => false] ])?> 5 6<div> 7~入力欄のhtml 8<li class="line top_blank_line"> 9 <label>1.償却費(年)</label> 10 11 <input class="fixed_cost_input_width right_rem_blank" name="data['EstimationDocuments']['yearly_depreciation']" data-bind="value: EstimationDocument.fixedCost.depreciation.yearly, event: {focus: EstimationDocument.fixedCost.depreciation.yearly.focus, blur: EstimationDocument.fixedCost.depreciation.yearly.blur}"> 12</li> 13~ 14<button>見積登録</button> 15</div> 16 17<?php echo $this->Form->end(); ?>
質問本文
保存しようとボタンを押すと、上記の分が画面とコンソールに表示されます。
403は閲覧禁止(できない状態)なのは調べて分かったのですが、なぜ403になるのかが分かりません。
原因と解決方法を教えていただきたいです。
補足情報(FW/ツールのバージョンなど)
足りない情報やソースコードがありましたら、コメントにお願いします。
追記します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/29 08:22
2020/10/29 12:27