我需要使用某些名称动态渲染部分。在后端,我设置了以下内容:
render.js
const myPartialFunction = _.constant('site/myPartial');
在hbs模板中,我尝试获取myPartialFunction
page.hbs
{{> (myPartialFunction)}}
它正确渲染部分,但我收到以下错误:
The partial undefined could not be found
但以下情况不会导致错误
page2.hbs
{{> site/myPartial}}
尽管使用{{> (myPartialFunction)}}
有效,但每次呈现页面时都会出错,这非常烦人
我该如何解决这个问题?