确定emberjs中是否存在模板

时间:2016-03-04 21:32:27

标签: javascript templates ember.js coffeescript

我的emberjs应用程序在我的ember-cli-build.js文件中使用以下行

app.import('bower_components/ember/ember-template-compiler.js');

以及像这样的一些代码(coffeescript)

define("floorplan-viewer/templates/#{templateName}", ['exports'], (exports) ->
  exports['default'] = Ember.HTMLBars.compile(temlateText)
)

启用动态模板创建。

现在我需要能够确定是否存在“floorplan-viewer / templates / custom-template-001”。我如何检查环境以查看是否已创建此类模板?

1 个答案:

答案 0 :(得分:1)

我明白了:

window.require.entries["floorplan-viewer/templates/#{templateName}"] != null