我正在尝试在 Rails 应用程序中通过 mustache 模板呈现一些 json 数据。
我的出发点是这个 railscast:http: //railscasts.com/episodes/295-sharing-mustache-templates
在演员阵容中,Rayn 做了类似的事情
$('#target').append Mustache.to_html($('#project_template').html(), json-data)
在 html 中有一个 id="project_template" 包含模板的 div
<script type="text/html" id="project_template">
...
</script>
但是,我希望能够将 mustache 模板存储到文件中(比如说在 app/views/projects/project.mustache 中)并将其直接加载到我的 js 中。就像是
$('#target').append Mustache.xxxxx(MUSTACHE_FILE, json-data)
我环顾四周,但找不到任何有用的东西或任何建议。这有可能实现吗?
谢谢。