gpt4 book ai didi

node.js - Handlebars with Node.js,预编译错误

转载 作者:搜寻专家 更新时间:2023-10-31 23:49:01 28 4
gpt4 key购买 nike

我使用 handlebars.js 客户端已有一段时间了,我想开始使用预编译模板。我遵循了可以在网上找到的一般说明,包括在 Node.js 上安装它:

npm install handlebars -g

接下来,我转到我的 Node.js 目录并尝试编译一个简单的模板:

handlebars test.handlebars -f test.js

我收到一个错误(命令提示符,请注意,我很抱歉):

C:\Users\Administrator\AppData\Roaming\npm\node_modules\handlebars\lib\handlebars.js:1
(function (exports, require, module, __filename, __dirname) { import Handlebar
^^^^^^
SyntaxError: Unexpected reserved word
at Module._compile (module.js:439:25)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (C:\Users\Administrator\AppData\Roaming\npm\node_modules\handlebars\bin\handlebars:105:18)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)

我转到这个出错的 handlebars.js 文件,果然代码看起来不像 javascript:

import Handlebars from "./handlebars.runtime";

// Compiler imports
module AST from "./handlebars/compiler/ast";
import { parser as Parser, parse } from "./handlebars/compiler/base";
// ... etc.

我真的不知道这是什么,所以我不知道我做错了什么或者我的问题是什么。

最佳答案

看起来 lib 文件夹包含未处理的类 ES6 模块。所以可能它没有被 es6-module-transpiler 处理。我是未决问题https://github.com/wycats/handlebars.js/issues/642也存在类似问题https://github.com/wycats/handlebars.js/issues/643 .

我通过安装 es6-module-transpiler 手动处理文件来解决这个问题,并快速修复仍然存在的错误(一些关于 ["default"] 导出的东西)。

关于node.js - Handlebars with Node.js,预编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19763618/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com