0

我正在使用summernote编辑文本,当我通过summernote工具栏或菜单将样式赋予文本时,它会出现,但在提交文本和html标签后存储在数据库中,样式由此转义。

<div id="summernote"><?php echo stripslashes($career['description']); ?></div>
                    <textarea class="form-control" id="deschere" name="desc" placeholder="Description" rows="20" style="display: none;"></textarea>

脚本

<script type="text/javascript">
$('#thisform').submit(function(e){
    $('#deschere').html($('#summernote').code());
    console.log($('#deschere').html());
    //e.preventDefault();
});

存储在数据库中的代码

$data['title']= $this->input->post('title');
$data['description']= $this->input->post('desc');
$data['date']=date('Y/m/d h:i');
$id=$this->input->post('id');
$this->db->where('id',$id);
$response=$this->db->update('careers',$data);
return $response;

有人对此有解决方案吗?谢谢你。

4

2 回答 2

3

1.检查 application/config/config.php 中的 XSS 过滤 $config['global_xss_filtering'] = TRUE; 设置为假;因为它会从summernote中删除内联样式。

  1. $this->input->post('desc', FALSE); 设置为假
于 2014-10-16T15:16:39.577 回答
0

也许当您将数据插入数据库时​​,标签会自动删除?

于 2014-10-14T12:50:47.050 回答