http://localhost:8765/persons/delete/1
if ($this->request->is(['post', 'put'])) {……
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
public function delete($id = null)
{
$person = $this->Persons->get($id);
if ($this->request->is(['post', 'put'])) {
if ($this->Persons->delete($person)) {
return $this->redirect(['action' => 'index']);
}
} else {
$this->set('person', $person);
}
}
| << 前へ | 次へ >> |