我有 Nette,Doctrine 2 的项目。当我想从 Doctrine 2 的表单中保存 CKeditor 值时,它会裁剪相同的 HTML 标签,但保存效果不好。我的方法保存文章。
public function addArticle($creator, $data) {
$article = new Article();
$article->setCategory($data->category);
$article->setContent($data->content);
$article->setTitle($data->title);
$this->em->persist($article);
$this->em->flush();
}
变量 $data->content 具有值:
<h1>My first article</h1>
<p><strong>One bold line</strong></p>
.
.
但它保存到数据库:
<h1>My first article</h1>
<p>
你知道错在哪里吗?如何使用 Doctrine 2 保存 CKeditor 值