我需要创建信息日志(文件)。我正在使用Winston。
我对在我的React应用程序上创建Restfull端点有疑问。
在server.js上,我创建了以下方法:
app.get('/api/logger', (req, res) => {
logger.log('info', `Client: inside`);
return res.send('OK');
});
但是,只要我尝试访问(或发送至)此路由,浏览器就会返回404
这是我在组件上创建的方法:
callApi = async () => {
const response = await fetch('/api/logger');
console.log(response);
};