2014-10-27 69 views
0

我的問題很簡單,但我找不到辦法。在外部文件中創建一個車把模板

我基本上想要所有的我的把手模板外部。 這是我的一個樣本模板文件。這就是所謂的example.js

<script id="test_template"> 
<div>Hello world!</div> 
</script> 

當我將其包含在HTML文件我得到以下錯誤:

Uncaught SyntaxError: Unexpected token < 

對於第一線 - 瀏覽器不開心,有一些HTML中javascript源文件。

我的疑問是:有什麼方法arround它/什麼是標準方式拆分模板到手柄中的文件?

回答

0

中的文件,添加type="text/x-handlebars-template"

<script type="text/x-handlebars-template" id="test_template"> 
    <div>Hello world!</div> 
</script> 

對於外部文件,看看: https://github.com/wycats/handlebars.js/issues/82

+0

我仍然得到同樣的錯誤。 – Bloodcount 2014-10-27 16:17:15