我正在编写一个使用async / await的方法,并承诺将一些JSON写入文件,然后呈现一个哈巴狗模板。但由于某种原因,写入JSON的代码与res.render()方法冲突,导致浏览器无法连接到服务器。
奇怪的是,我没有在控制台中收到任何错误,并且JSON文件按预期生成 - 页面刚刚赢得了渲染。
我使用fs-extra模块写入磁盘。
const fse = require('fs-extra');
exports.testJSON = async (req, res) => {
await fse.writeJson('./data/foo.json', {Key: '123'})
.then(function(){
console.log('JSON updated.')
})
.catch(function(err){
console.error(err);
});
res.render('frontpage', {
title: 'JSON Updated...',
});
}
我开始认为有一些根本的东西我没有与承诺冲突,写入磁盘和/或表达' res.render方法。值得注意的是res.send()工作正常。
我还尝试了另一个NPM模块来编写文件(write-json-file)。它给了我完全相同的问题。
更新: 所以我是个白痴。该问题与Express和JSON文件无关。这与我在运行nodemon以在文件更改时自动重启服务器这一事实有关。因此,只要保存了JSON文件,服务器就会重新启动,停止呈现页面的过程。向那些试图帮助我的可怕人们道歉。你仍然帮我解决了这个问题,所以我真的很感激!
答案 0 :(得分:1)
这是实际问题:
OP正在运行nodemon以在服务器看到文件更改时重新启动服务器,这就是阻止代码运行的原因,因为只要生成json文件,服务器就会重新启动。
努力排除故障:
要想解决这个问题会有些麻烦,因为我需要向你展示代码,即使我还不知道导致问题的原因,我也会把它写进去。我建议您使用此代码完全检测内容:
const fse = require('fs-extra');
exports.testJSON = async (req, res) => {
try {
console.log(`1:cwd - ${process.cwd()}`);
await fse.writeJson('./data/foo.json', {Key: '123'})
.then(function(){
console.log('JSON updated.')
}).catch(function(err){
console.error(err);
});
console.log(`2:cwd - ${process.cwd()}`);
console.log("about to call res.render()");
res.render('frontpage', {title: 'JSON Updated...',}, (err, html) => {
if (err) {
console.log(`res.render() error: ${err}`);
res.status(500).send("render error");
} else {
console.log("res.render() success 1");
console.log(`render length: ${html.length}`);
console.log(`render string (first part): ${html.slice(0, 20}`);
res.send(html);
console.log("res.render() success 2");
}
});
console.log("after calling res.render()");
} catch(e) {
console.log(`exception caught: ${e}`);
res.status(500).send("unknown exception");
}
}