我正在尝试学习如何向用户显示一条消息,通知他们错误或成功消息,试图从数据库中删除内容页。我在想,到目前为止,我是否做得对。如果我是我在视野中所做的?
控制器
/**
* Content_pages::delete_content_page()
*
* Deletes a content page from the list of content pages.
*
* @param string $content_page_id The id of the content page being deleted.
* @return void
*/
public function delete_content_page($content_page_id)
{
$status = 'unprocessed';
$title = 'Action Unprocessed';
$message = 'The last action was rendered unprocessed. Please try again.';
if (isset($content_page_id) && is_numeric($content_page_id))
{
$content_page_data = $this->content_page->get($content_page_id);
if (!empty($content_page_data))
{
$this->content_page->update($content_page_id, array('status_id' => 3));
if ($this->db->affected_rows() > 0)
{
$status = 'success';
$message = 'The content page has been successfully deleted.';
$title = 'Content Page Deleted';
}
else
{
$status = 'error';
$message = 'The content page was not deleted successfully.';
$title = 'Content Page Not Deleted';
}
}
}
$output = array('status' => $status, 'message' => $message, 'title' => $title);
$this->session->set_flashdata('output', $output);
redirect('content-pages/list');
}
/**
* Content_pages::list_content_pages()
*
* List all of the content pages found in the database.
*
* @return void
*/
public function list_content_pages()
{
$content_pages = $this->content_page->get_all();
$data['output'] = $this->session->flashdata('output');
$this->template
->title('Content Pages')
->set('content_pages', $content_pages)
->build('content_pages_view', $data);
}我的问题在视图中,因为它显示为默认的空消息,所以我试图找出在视图第一次呈现时以及只有当有消息要显示时,如何不显示它。
if (isset($output))
{
if ($output['status'] == 'success')
{
echo '<div class="alert alert-success">';
}
elseif ($output['status'] == 'error')
{
echo '<div class="alert alert-error">';
}
else
{
echo '<div class="alert alert-error">';
}
echo '<button type="button" class="close" data-dismiss="alert">×</button>';
echo '<strong>' . $output['title'] . '</strong>' . $output['message'];
echo '</div>';
}
?>发布于 2013-09-03 04:38:00
我已经将默认设置为会话闪存数据值,在这种情况下,第一次加载时该值将为false,因为如果没有设置数据,它将返回什么。因此,我需要添加一个条件来检查值是否为false。
发布于 2013-08-31 01:21:00
我不知道您的自定义模板类如何处理->title()->set()->build()。但是,看起来您仍然在将$data传递到视图中。
因此,您只需在视图中执行echo $output;。
编辑:
我认为$output仍然出现的原因是因为这些代码行不在if语句中:
echo '<button type="button" class="close" data-dismiss="alert">×</button>';
echo '<strong>' . $output['title'] . '</strong>' . $output['message'];
echo '</div>';尝试将它们移到if语句中,其中只有在设置$output时才会打印出来。
https://stackoverflow.com/questions/18543526
复制相似问题