AngularJS:从ng-include

时间:2018-02-27 13:58:45

标签: javascript html angularjs

我有一个我想用作模板的表单。我正在使用ng-include来实现此目的。

HTML

<div ng-switch-when="insurance">
    <div ng-include="'variablePropertyForm.html'" ng-model="car.insurance"></div>
</div>

insurance是一个具有我想要绑定到input的属性的类。那么如何从insurance内部访问variablePropertyForm.html对象。模板,因为它是一个模板,我不想显式绑定到insurance.property

1 个答案:

答案 0 :(得分:2)

您可以创建指令并在该范围内定义范围,您可以传递该保险对象,并且可以在该指令中定义模板。