ERR_INVALID_ARG_TYPE-“ from”自变量必须为字符串类型收到Array的实例

问题描述

我正在尝试为视图文件添加两个目录。在文档中,我发现您可以添加字符串或数组以添加多个视图文件夹。

一个用于管理面板,另一个用于网站/公共用途。

所以我以以下方式添加

/**
 * setting up the view engine
 */
app.engine('handlebars',hbs({
    defaultLayout: "main"
}));
app.set('view engine','handlebars');

app.set('views',[path.join(__dirname,'views'),path.join(__dirname,'public-views/zubizi-theme')]);
// end view engine setup

我遇到以下错误

TypeError [ERR_INVALID_ARG_TYPE]: The "from" argument must be of type string. Received an instance of Array

(node:108) UnhandledPromiseRejectionWarning: TypeError [ERR_INVALID_ARG_TYPE]: The "from" argument must be of type string. Received an instance of Array
    at validateString (internal/validators.js:117:11)
    at Object.relative (path.js:437:5)
    at ExpressHandlebars.renderView (F:\zubizi\cms\files\node_modules\express-handlebars\lib\express-handlebars.js:193:38)
    at View.render (F:\zubizi\cms\files\node_modules\express\lib\view.js:135:8)
    at tryRender (F:\zubizi\cms\files\node_modules\express\lib\application.js:640:10)
    at Function.render (F:\zubizi\cms\files\node_modules\express\lib\application.js:592:3)
    at ServerResponse.render (F:\zubizi\cms\files\node_modules\express\lib\response.js:1008:7)
    at F:\zubizi\cms\files\routes\admin.js:7:6
    at Layer.handle [as handle_request] (F:\zubizi\cms\files\node_modules\express\lib\router\layer.js:95:5)
    at next (F:\zubizi\cms\files\node_modules\express\lib\router\route.js:137:13)
(node:108) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block,or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection,use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:108) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future,promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

这是我的文件夹结构,如下所示:

enter image description here

我在我的应用中使用了以下技术:

NodeJS模板引擎express-handlebars

Expressjs 版本:4.16.0

Node JS 版本:v12.16.3

解决方法

有一个开放的PR,用于支持以数组形式传入的多个视图导演:https://github.com/ericf/express-handlebars/pull/209

现在,您需要修复设置并将视图合并到一个目录中,并仅传递该目录:

app.set('views','./path-to-views-folder');