有没有办法从 JavaScript 导入 .html 文件?

Is there a way to import .html file from JavaScript?

我的 Cloudflare Worker 项目中有以下导入语句,用于将 html 文件作为字符串常量导入:

import userAgentJsch from './userAgentJsch';
import { parse } from 'cookie';
import test from '.test.html';

失败并出现错误:

Module not found: Error: Can't resolve '.test.html' in

我读到需要配置我的 webpack.config.js 文件,但我没有这样的文件。

你能帮忙吗?我只想将我的 html 文件与 js 文件分开,但找不到我能理解的解决方案。

毫无疑问,视图文件夹结构用于渲染模板

要在 nodejs 中读取文件,请使用:

const fs = require("fs");
const files = fs.readFileSync("new.html");

并导入

var htmlContent = require('path/to/html/file.html');