我的字符串为const content="<div>How do I <b>convert </b> this string to file?</div>";
将其转换为html文件并最终将其转换为base64字符串的正确方法是什么。
Buffer.from(content).toString('base64')
仅将字符串转换为base64,而不转换为文件
答案 0 :(得分:1)
使用create-html
var fs = require('fs')
var createHTML = require('create-html')
var html = createHTML({
title: 'example',
body: '<div>How do I <b>convert </b> this string to file?</div>'
})
fs.writeFile('index.html', html, function (err) {
if (err) console.log(err)
})
console.log(fs.readFileSync('index.html').toString('base64'));
有关更多信息,请参见此链接https://www.npmjs.com/package/create-html
答案 1 :(得分:0)
通过Node file system API,您可以轻松执行以下操作:
const fs = require('fs');
const content="<div>How do I <b>convert </b> this string to file?</div>";
// write `content` to `index.html`
fs.writeFileSync('index.html', content);
// read `index.html` in base64
console.log(fs.readFileSync('index.html').toString('base64'));