从车把模板加载css

时间:2014-01-23 03:03:05

标签: ember.js handlebars.js

我正在使用ember js。如何从手柄js模板加载CSS样式表

例如,这不起作用

<script type="text/x-handlebars" id="about">
    <link rel="stylesheet" href="/static/css/about.css"}}
    // HTML CONTENT
    .......
</script>

1 个答案:

答案 0 :(得分:1)

看起来它对我很有用。

<script type="text/x-handlebars" data-template-name="color">
  <h3>Color</h3>
  <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css">
  The color of the day is: {{color}}
</script>

http://emberjs.jsbin.com/OxIDiVU/162/edit