目前,当用户添加了/add
的内容后,我会让它运行一个函数,并通过一条消息重定向到/add
。
$app->post('/add', function ($request, $response) {
// Define and add query parameters
$params = $request->getParams();
new Add($params);
// Add the new entry
Add::newEntry();
// Return View
return $this->view->render($response, 'add/add.twig', [
'add' => true
]);
});
在Slim重定向用户后,如何防止表单在刷新时再次提交,我该怎么做呢?