Node.js:将变量传递到文件

发布于 2024-12-03 07:30:04 字数 122 浏览 0 评论 0原文

我正在使用 res.sendfile 'xml/foo.xml' 发送 .XML 文件。如何将变量传递到 foo.xml 文件并相应地更改 .XML 内容?

谢谢

I am sending a .XML file using res.sendfile 'xml/foo.xml'. How can I pass variables to the foo.xml file and change the .XML content accordingly?

Thanks

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

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

发布评论

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

评论(1

生寂 2024-12-10 07:30:04

您必须使用模板文件并将变量传递到库中,该库将解析模板并为您提供每个请求的 XML,而不是使用 res.sendfile 'xml/foo.xml' 。虽然 Node.js 有许多模板引擎,但 Express 默认支持的两个是 EJS。 Jade 与 Haml 类似,这很酷,但是如果您正在使用现有的 XML,那么您可能应该坚持使用 EJS。 EJS 让您只需采用普通的 HTML 或 XML 并在其中嵌入 JavaScript。

因此,您可以将 xml/foo.xml 重命名为 views/foo.ejs,而不是 res.sendfile,而是编写类似于

res.contentType 'text/xml'
res.render 'foo.ejs', obj

其中 obj 包含您想要提供给模板的所有变量。

有关详细信息,请查看Express 指南中的“视图渲染”。

Instead of using res.sendfile 'xml/foo.xml', you'll have to use a template file and pass your variables into a library that will parse the template and give you the XML for each request. While there are many templating engines for Node.js, the two that Express supports by default are EJS and Jade. Jade is Haml-like, which is cool, but if you're working with existing XML, then you should probably stick to EJS. EJS lets you just take ordinary HTML or XML and embed JavaScript in it.

So, you'd rename xml/foo.xml to views/foo.ejs and, instead of res.sendfile, you'd write something like

res.contentType 'text/xml'
res.render 'foo.ejs', obj

where obj contains all of the variables that you want to make available to the template.

Check the Express guide on "View Rendering" for more information.

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