在我的parent.html的制造商应用中,我有......
$.get(http://your-domain.com/get-h1, function(response) {
$('.your-element').append(response);
});
然后在我的child.html中我有类似
的东西---
title: awesome
other: also awesome
---
{{> widgetTemplate}}
{{other}}
我知道this.parent.title不起作用,但是有人知道是否有办法从子模板访问标题前端材料,就像父模板像其他模板一样访问其前端而不为每个模板引入javascript ?
答案 0 :(得分:0)
经过实验而不是前面的事情,我可以简单地在模板中定义我需要的变量:
{{> widgetTemplate title="awesome"}}
然后在模板中
<h1>This is {{title}}</h1>