neditor PHP后端上传

Neditor是基于Ueditor的一款现代化界面的富文本编辑器。

最新版去掉了后端相关代码,纯AJAX提交,对于很多同学来说都希望简单改一下UE的后端上传代码就可以用。

具体步骤如下:

1、neditor.config.js增加如下的配置项

imageFieldName:"upfile",

2、修改neditor.service.js,请求地址请更改为自己服务器的请求地址

UE.Editor.prototype.getActionUrl = function(action) { /* 按config中的xxxActionName返回对应的接口地址 */ if (action == 'uploadimage' || action == 'uploadscrawl' || action == 'uploadvideo') { return 'http://localhost/neditor/php/controller.php?action='+action; } else { return this._bkGetActionUrl.call(this, action); } }

3、修改neditor.service.js中的,接口返回判断条件为

getResponseSuccess: function(res) { return res.message == "SUCCESS"; },

4、修改后端对应的PHP返回,Upload.class.php中的getFileInfo

public function getFileInfo() { return array( "message" => $this->stateInfo, "url" => $this->fullName, "title" => $this->fileName, "original" => $this->oriName, "type" => $this->fileType, "size" => $this->fileSize ); }

你可能感兴趣的:(neditor PHP后端上传)