使用 POST 数据从 Node.js 提供静态文件
我运行一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想要的是模板。它可以在客户端和服务器端完成。 (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.