kindeditor 批量上传 上传失败 thinkphp swfupload session

懒得取标题,直接关键词堆砌了,

问题描述也省略了,

直接来到解决方法:

config.php文件中配置一下 URL或post传入session id的键名为SSID。

'VAR_SESSION_ID' => 'SSID'

给kindeditor的uploadJson加上SSID

KindEditor.ready(function(K) {
  window.editor = K.create('#editor', {
    uploadJson : '__MODULE__/Upload/xxx/SSID/{:session_id()}'
  });
});

就可以了。so easy

你可能感兴趣的:(session,thinkphp,swfupload,kindeditor,批量上传,上传失败)