0

我在 Jade 中有一个 Javascript 模板:

script.
 bla
 bla

我希望我可以包含一些来自名为“inc.jade”的文件的 js 代码,其中仅包含以下内容:

bli

这段代码似乎失败了:

script.
 bla
 include inc.jade
 bla

将 inc.jade 包含到我的脚本中的正确方法是什么。标签 ?

4

1 回答 1

0

对此场景的建议: 您应该将 JS 放入每个单独的文件中,并在需要的地方包含该 js 文件。

Jade 的最新版本添加了 mixins 并包含,您可以将现有的 Jade 包含为:

html
      include includes/head  
      body
        h1 My Site
        p Welcome to my super site.
        include includes/foot

    includes/foot.jade:        
    #footer
      p Copyright (c) foobar

    includes/head.jade:        
    head
      title My Site        
      script(src='/javascripts/jquery.js')
      script(src='/javascripts/myCustom.js') <<------- include it where you need
      script(src='/javascripts/app.js')
于 2013-08-30T10:15:16.190 回答