0

当我尝试打开一个小文本文件(<1kB)时,文本编辑器要么什么都不显示(空白页),要么像这样(在源代码编辑器中):

<html><body><script>document.cookie=’eeeeeee=a026c7c8eeeeeee_a026c7c8; path=/’;window.location.href=window.location.href;</script></body></html>

每当我下载一个小文件时,该文件最终都是空的。

如果我使用了 filezilla 之类的其他东西,下载后文件不是空的。

响应或控制台中似乎没有任何错误。适用于较大的文件。服务器正在运行 php 5.3.8。有任何想法吗?

编辑:

打开文本文件时运行的 class.TextEditor.js 相关代码:

loadFileContent : function(fileName){
    this.currentFile = fileName;
    var connexion = new Connexion();
    connexion.addParameter('get_action', 'get_content');
    connexion.addParameter('file', fileName);   
    connexion.onComplete = function(transp){
        this.parseTxt(transp);
        this.updateTitle(getBaseName(fileName));
    }.bind(this);
    this.setModified(false);
    this.setOnLoad(this.textareaContainer);
    connexion.sendAsync();
},
4

0 回答 0