如何从JavaScript加载HTML模板文件内容

时间:2017-01-24 16:16:24

标签: javascript backbone.js

我有collection,其中包含tab模型数组

喜欢

[
  new TabModel({ title: 'Step 1', template: 'step1.html' }),
  new TabModel({ title: 'Step 2', template: 'step2.html' }),
  new TabModel({ title: 'Step 3', template: 'step3.html' }),
  new TabModel({ title: 'Step 4', template: 'step4.html' })
]

在我的View循环播放collection我获得标题,template放在templates文件夹下。

View

中获取模板内容的方法是什么?

1 个答案:

答案 0 :(得分:0)

有很多方法可以做到这一点。如果您具有最小的主干设置,则可以使用jQuery load方法来检索HTML内容。

如果您正在使用RequireJS,那么它有一个文本插件,还有一些webpack模块可以执行此操作。