如何在 Express 视图中检索远程部分?
我想通过像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要定义一个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.