Cakephp 2.4.1
表:文章字段:id;title;content;slug
大家好!在我的数据库中,我有一些要检索的内容,其中包含一些 html 标签
. 但是当我想加载页面时什么都没有出现,但是当我删除这些标签时,内容就会加载。
在我的控制器中
public function index(){
$articles = $this->Article->find('all');
$this->set('articles', $articles);
// debug($posts);
// die();
}