新しいカテゴリ アイテムを追加できるフォームがあります。
<form method="POST" action="backend/categories/form">
<input type="text" name="title" value="" />
<button type="submit">Save</button>
<button type="submit">Save and add new</button>
</form>
私がやりたいことは、Save
ボタンをクリックすると、コントローラーで関数が処理され、前のページ (カテゴリページのリスト) に自動的にリダイレクトされますが、をクリックするたびにSave and add new
、関数を処理する必要がありますが、コントローラーの関数で定義されているページにリダイレクトせずに同じページ。
コントローラ:
function form($id){
// Process the form
// ...
// Redirect to the category list page
redirect($this->config->item('backend_folder').'/categories');
}
Javascript を使用せずにそれを達成するためのヒントはありますか?