buffer.js:246“对象1没有方法'toLowerCase'

时间:2013-07-25 16:03:19

标签: javascript node.js raspberry-pi raspbian

我试图在javascript中创建一个.smil(.xml)解析器。 但是当我想测试它时,node.js只是说我:

buffer.js:246
    switch(encoding && encoding.toLowerCase()){
                                ^
TypeError: Object 1 has no method 'toLowerCase'
    at Function.Buffer.isEncoding (buffer.js:246:32)
    at assertEncoding (fs.js:98:27)
    at Object.fsread (fs.js:422:5)
    at gets (/home/pi/SMIL_Parser.js:8:8)
    at read_until (/home/pi/SMIL_Parser.js:28:14)
    at home/pi/SMIL_Parser.js:64:14
    at Object.oncomplete (fs.js:93.15)

gets()确实是我的功能之一:

var io=require('fs');
...
function gets (file){
    var chaine="", cache="", pkmn=0;
    io.read(file, cache, 0, 1, null, function(err, byte, buf){
        if (err || byte===0){return -1;}
        while ((cache!=="\n"))
        {
            chaine=chaine+cache;
            cache="";
            pkmn=io.readSync(file, cache, 0, 1, null);
            if (pkmn===0){return -1;}
        }
    });
}

我根本不知道出了什么问题,它似乎已被阅读,但我已确保获得正确的参数,尝试更新node.js,fs和npm。我在谷歌上发现的唯一类似错误是更新问题。

编辑: 添加了完整的错误消息,此处为函数read_until:

function read_until(smil, limit){
    var line="";
    do
    {
        line=gets(smil);
        if (line===-1){return -1}
    }while (!(line.search(limit)));
    return 0;
}

function parse (pathname){
    var smil=0, line="", pkmn=0;
    io.open(pathname, 'r', function (err, fd){
        if (err){return -1;}
        smil=fd;
        pkmn=read_until(smil, "<smil>");
        ...

2 个答案:

答案 0 :(得分:2)

fs.read takes a buffer not a string.

将缓存更改为缓冲区。

function gets (file){
    var chaine="", cache=new Buffer(), pkmn=0;
    io.read(file, cache, 0, 1, null, function(err, byte, buf){
        if (err || byte===0){return -1;}
        while ((cache!=="\n"))
        {
            chaine=chaine+cache;
            cache="";
            pkmn=io.readSync(file, cache, 0, 1, null);
            if (pkmn===0){return -1;}
        }
    });
}

请参阅fs.read code here

如果要将字符串用作“缓冲区”,则必须使用旧版界面

旧版字符串界面 fs.read(fd, length, position, encoding, callback)

答案 1 :(得分:1)

如果没有看到定义encoding的代码部分,我无法准确地告诉您错误,但encoding显然不是字符串。 .toLowerCase()是String对象的一种方法。