使用 POST 数据从 Node.js 提供静态文件

发布于 2024-12-14 18:53:56 字数 366 浏览 1 评论 0原文

我运行一个node.js 服务器,并使用node-static 来提供静态HTML 文件。

var nodeStatic = require('node-static');
var file = new nodeStatic.Server('./public');
..
file.serveFile('/file.html', 500, {}, request, response); 

我想做的是,提供一个带有一组附加变量的静态 HTML 文件(例如通过 POST 方法)。我想在 HTML 文件中包含动态信息,并且希望能够从节点服务器移交该动态数据(最好是 JSON 格式)。

节点静态可以做到这一点吗?或者还有其他模块可以吗?

I run a node.js server, and use node-static to serve static HTML files.

var nodeStatic = require('node-static');
var file = new nodeStatic.Server('./public');
..
file.serveFile('/file.html', 500, {}, request, response); 

What i would like to do is, serve a static HTML file with a set of variables attached (e.g. over the POST method). I want to include dynamic information in the HTML file, and would like to be able to hand over that dynamic data - ideally in JSON format - from the node server.

Can node-static do that? Or is there another module out there that can?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你没皮卡萌 2024-12-21 18:53:58

你想要的是模板。它可以在客户端和服务器端完成。 (Jade是我最喜欢的)但是客户端的性能有时可能不能令人满意。请查看这些客户端模板引擎基准

What you want is templating. It can be done in both client-side and server-side. (Jade is my favorite) But the client-side performance can be unsatisfying sometimes. Here have a look at these Client-Side Template Engine Benchmarks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文