我在AngularJS 1.6中使用Froala编辑器,当我从代码视图添加HTML并尝试从视图模式进行编辑时,编辑器崩溃。
在使用WampServer和Window 10的本地系统中,它运行良好,当我使用centos 7在NGINX上部署时,将会崩溃
有关更多详细信息,请检查video
编辑器版本:froala_editor v2.8.1
答案 0 :(得分:0)
我也遇到了您的问题,今天我有一个解决方法。
您可以参考my answer for my question on StackOverflow here
我想您已经使用CSS隐藏了Froala的无牌标语,因此在更改模型11次后,它将崩溃。这是我检测问题的简单演示 https://stackblitz.com/edit/react-froala-editor?file=style.css。
div.fr-wrapper>div>a {
/* display: none !important; */
/* position: fixed; */
/* z-index: -99999 !important; */
font-size: 0px !important;
padding: 0px !important;
height: 0px !important;
}
在CSS代码中,如果我们使用display: none
,则第11次更改后它将崩溃。您可以尝试使用display: none
,在编辑后它将崩溃11次。
我找到了解决此问题的技巧,我没有隐藏横幅,但是我将上面的代码设置为font-size: 0
和padding: 0
不可见。