0

你如何让 Spine/Hem 渲染 Jade 模板?在文档的最后一行中,它说您只需将jade的runtime.js作为一个lib包含在slug.json中,但是当我这样做并运行我的应用程序时,我得到:

Uncaught ReferenceError: exports is not defined application.js:46
Uncaught ReferenceError: require is not defined

还有更多,还是我只是做错了什么?我使用npm来安装jade,所以我只是在我的slug.json中添加了路径,如下所示:

{
  "dependencies": [
    "es5-shimify", 
    "json2ify", 
    "jqueryify", 
    "spine",
    "spine/lib/local",
    "spine/lib/ajax",
    "spine/lib/route",
    "spine/lib/manager"
  ],
  "libs": ["node_modules/jade/lib/runtime.js"]
}

谢谢

4

1 回答 1

0

确保您使用的是 0.3 版本的 hem 或更新版本,因为在那之前没有实现翡翠支持,除了 github.com/spine/hem 上的最新 hem 文档之外,请查看 slug.json 以获得我所做的简单示例应用程序用玉和下摆

https://github.com/aeischeid/randomizable-excercise-picker/blob/b1c17e10ca1f3dd6e15d5127f1a9d029616f195d/slug.json

于 2013-07-24T16:14:26.180 回答