NodeJS 车把未找到动态部分

nuypyhwy  于 2022-12-12  发布在  Node.js
关注(0)|答案(1)|浏览(126)

我有这个偏:
_信息.hbs

info

在我的helpers文件中有这个helper函数:
helper.js

module.exports = {
  infoPartial: function(context, options) {
    return '/absolute/path/to/_info.hbs';    
  }
};

我的模板是:

{{> ('infoPartial') }}

当我调用模板时

"The partial /absolute/path/to/_info could not be found"

我不知道,为什么车把找不到偏了。也许有人能帮我解决这个问题。

sy5wg1nm

sy5wg1nm1#

我的理解是,你不能将一个绝对路径传递给分部解析器。路径解析是由框架完成的。你应该只传递分部的 name 而不是路径。在你的例子中,这意味着用简单的'_info'替换'/absolute/path/to/_info.hbs'

相关问题