联系官方销售客服
1835022288
028-61286886
迅睿默认文章模块评论是textarea,要开启评论框百度编辑器,需要在更改comment_ajax.html模板后还需要在/app/news/controllers/comment.php中增加函数_safe_replace,否则将获取不到编辑器中的内容:
// 格式化评论内容,方便二次开发和重写 public function _safe_replace($data) { $value = trim($_POST['data']['content']); if (isset($_POST['editorValue']) && $_POST['editorValue']) { $value = trim($_POST['editorValue']); } return str_replace(['<p><br/></p>'], '', $value); }
但是迅睿每次的升级包都会覆盖这个文件,请问有什么好办法可以不影响升级的情况下开启评论框的百度编辑器?