Nodejs - 从文本文件中读取html内容时出现问题

时间:2017-11-18 09:44:16

标签: javascript node.js

我想用以下代码从文本文件中读取html内容。所有html标签都会被一些垃圾字符替换,同时使用fs模块从文件中读取。

有人可以帮我理解我做错了什么吗?

enter code here文件内容

<h2 class="mb30">Bone Grafting</h2>

回复

&lt;h2 class&#x3D;&quot;mb30&quot;&gt;Bone Grafting&lt;&#x2F;h2&gt;

使用的代码

var fs = require('fs');
fs.readFile(filePath, function (err, contents) {
   //some code here
}

文本文件的编码是utf-8

1 个答案:

答案 0 :(得分:-1)

您缺少包含文件格式以读取文件详细信息。

fs = require('fs')
fs.readFile('/etc/hosts', 'utf8', function (err,data) {
  if (err) {
    return console.log(err);
  }
  console.log(data);
});