Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 xml 文件存储在文件系统中。我想在不解析的情况下读取 xml 文件并将其放在浏览器表单 node.js 程序中。我为此尝试了以下代码:
var filePath="./hotel.xml"; var fileContent=fs.readFileSync(filePath); console.log(fileContent);
但它给了我奇怪的输出。请有人帮我解决这个问题。
我使用以下方法解决了这个问题:
fs.readFile('./hotel.xml', 'utf8', function(err, data) { if(err) { return console.log(err); } res.send(data); });