0

我有一个相当简单的脚本,它尝试读取然后解析 JSON 文件。JSON 非常简单,我很确定它是有效的。

{
    "foo": "bar"
}

现在,我一直在尝试用fs.readFile. 读取时不会发生错误,并且返回的数据是字符串。唯一的问题是字符串为空。

我重复了我的代码但使用fs.readFileSync了,这使用相同的路径完美地返回了文件。两者都utf-8指定了编码。

如您所见,这是非常简单的代码。

fs.readFile('./some/path/file.json', 'utf8', function(err, data) {
    if(!err) {
        console.log(data); // Empty string...
    }
});

console.log(fs.readFileSync('./some/path/file.json', 'utf8')); // Displays JSON file

可能是权限还是所有权?我尝试了一组权限755777但无济于事。

我正在运行节点 v0.4.10。任何可以为我指明正确方向的建议将不胜感激。谢谢。

编辑:这是我的实际代码块。希望这会给你一个更好的主意。

// Make sure the file is okay
fs.stat(file, function(err, stats) {
    if(!err && stats.isFile()) {
        // It is okay. Now load the file
        fs.readFile(file, 'utf-8', function(readErr, data) {
            if(!readErr && data) {
                // File loaded!
                // Now attempt to parse the config
                try {
                    parsedConfig = JSON.parse(data);
                    self.mergeConfig(parsedConfig);

                    // The config was loaded and merged
                    // We can now call the callback
                    // Pass the error as null
                    callback.call(self, null);

                    // Share the news about the new config
                    self.emit('configLoaded', file, parsedConfig, data);
                }
                catch(e) {
                    callback.call(self, new Error(file + ': The config file is not valid JSON.'));
                }
            }
            else {
                callback.call(self, new Error(file + ': The config file could not be read.'));
            }
        });
    }
    else {
        callback.call(self, new Error(file + ': The config file does not exist.'));
    }
});
4

1 回答 1

1

这很奇怪。

代码看起来。

var fs = require('fs');

fs.readFile('./jsonfile', 'utf8', function(err, data) {
        if(err) {
                console.error(err);
        } else {
                console.log(data);
                parsedConfig = JSON.parse(data);
                console.log(parsedConfig);
                console.log(parsedConfig.foo);
        }
});

json文件:

{
        "foo": "bar"
}

输出 :

$ node test_node3.js 
{
        "foo": "bar"
}

{ foo: 'bar' }
bar

这是在节点 0.4.10 上,但我很确定它应该适用于所有节点版本。

那么为什么你的数据是空的呢?在这种情况下,您应该检查错误(如我的)并发布输出(如果有)。如果你没有错误,你可以在github上填写一个bug

于 2011-11-12T18:39:19.557 回答