现在我正在使用 html_entity_decode 在我的视图中显示 HTML:
<strong>Body:</strong>
<?php echo html_entity_decode($post->body); ?></p>
但是当我将数据传递给我的视图时,还有另一种方法可以做到:
public function action_view($id = null)
{
$data['post'] = Model_Post::find($id);
is_null($id) and Response::redirect('Post');
$this->template->title = "Post";
$this->template->content = View::forge('post/view', $data);
}
我阅读了文档并尝试了:
public function action_view($id = null)
{
$data['post'] = Model_Post::find($id);
is_null($id) and Response::redirect('Post');
$this->template->title = "Post";
$this->template->content = View::forge('post/view', $data);
View::$auto_encode = false;
}
但这只是让我“访问未声明的静态属性”。显然我做错了什么......