异步和同步读取的不同结果

发布于 2024-12-14 20:26:12 字数 1972 浏览 0 评论 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.'));
    }
});

I have a fairly simple script that attempts to read and then parse a JSON file. The JSON is very simple and I am pretty sure it is valid.

{
    "foo": "bar"
}

Now, I have been trying to read it with fs.readFile. When read no errors occur and the returned data is a string. The only problem is that the string is empty.

I repeated my code but used fs.readFileSync, this returned the file perfectly using the same path. Both had a utf-8 encoding specified.

It is very simple code, as you can see.

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

Could it be permissions or ownership? I have tried a permission set of 755 and 777 to no avail.

I am running node v0.4.10. Any suggestions to point me in the right direction will be much appreciated. Thanks.

Edit: Here is a block of my actual code. Hopefully this will give you a better idea.

// 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.'));
    }
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-12-21 20:26:12

这很奇怪。

代码看起来。

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

This is pretty weird.

The code looks.

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 file:

{
        "foo": "bar"
}

output :

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

{ foo: 'bar' }
bar

This is on node 0.4.10 , but i'm pretty sure it should work on all node version.

So why your data is empty ? You should check err in this case (like mine) and post the output if any. If you have no error, you may fill a bug on github

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文