我想从我的React项目中获取数据。在react项目中,我创建了一条http://localhost:8088/viewpdf的路线。当我在浏览器中加载此路由时,它将打开包含动态数据的HTML页面。但是当我从节点js项目调用相同的路由时,它将显示错误。请检查我下面的代码。
fs.readFile("http://localhost:8088/viewpdf", 'utf8', function(err, html){
console.log('-----------------');
console.log(err);
console.log(html);
console.log('------------------');
});
错误:
--------------------
{ [Error: ENOENT: no such file or directory, open 'http://localhost:8088/viewpdf']
errno: -2,
code: 'ENOENT',
syscall: 'open',
path: 'http://localhost:8088/viewpdf' }
undefined
---------------------------