如何在 Express 视图中检索远程部分?

发布于 2024-11-07 22:23:49 字数 159 浏览 0 评论 0原文

我想通过像这样的 url 来自服务的部分内容(使用 ejs):

<div>
  <%- remotePartial('http://google.com/?q=hi') %>
</div>

这可能吗?

I'd like to have a partial come from a service via a url like so (using ejs):

<div>
  <%- remotePartial('http://google.com/?q=hi') %>
</div>

Is this possible?

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

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

发布评论

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

评论(1

奶气 2024-11-14 22:23:49

您需要定义一个dynamicHelper,它获取远程模板并将其传递给模板引擎。

但是,这需要异步动态助手,目前尚未提供。请参阅有关 Express 用户群组的此帖子

You would need to define a dynamicHelper, that fetches the remote template and passes it to the templating engine.

However, this would require asynchronous dynamicHelpers, which are currently not provided. See this thread on the express user group.

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