百度編輯器ueditor在PHP7下多圖上傳名字重復(fù),PbootCMS在V1.3.8已經(jīng)修復(fù),現(xiàn)在記錄如下,方便有類似情況的網(wǎng)友參考:
1、修改/ueditor/dialogs/attachment/attachment.js
_this.fileList.push(json); 修改為:_this.fileList[$file.index()] = json;
2、修改/ueditor/dialogs/image/image.js
_this.imageList.push(json); 修改為 _this.imageList[$file.index()] = json;
然后清理瀏覽器緩存后測試即可!