我刚开始使用LinemanJS,我使用lineman-angular-template作为我的初学者项目。
我已将所有默认的.js文件转换为.coffee,一切都按预期工作。
然后我将所有.html文件转换为.jade,但随后一切都破了。
我在这里可以看到我生成的玉文件 - > http://pastebin.com/UAGd4ZAW
现在我不知道如何在我的html中使用生成的jade.js文件。
只是加载页面本身,没有任何加载。我猜不会找到模板。
我尝试将js文件添加到index.html,但这也不起作用。
在这两种情况下,浏览器/检查器只是手动和铬崩溃。
答案 0 :(得分:2)
对不起Necromancing,但如果我在这里找到答案 - 我会节省一些时间。
我理解你的github回购: https://github.com/ksprashu/lineman-jade-template
如果我理解正确的评论: https://github.com/linemanjs/lineman/issues/83#issuecomment-20059462
您在routes.js中的路线应如下所示:
$routeProvider.when "/login",
template: JST['app/templates/login'](),
controller: "LoginController"