我已经在客户端上使用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. (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.
我真的不知道这是什么,所以我不知道我做错了什么或我的问题是什么.