我发现自己一次又一次地重复相同的代码片段,是否可以在 AngularJS 中执行类似的操作:
<div ng-snippet="mySnippet">
This is a snippet
</div>
<div ng-snippet="anotherSnippet">
Yet another snippet!!
</div>
<ng:include src="anotherSnippet">
<ng:include src="anotherSnippet">
<ng:include src="mySnippet">
以上的输出将是:
Yet another snippet!!
Yet another snippet!!
This is a snippet
我不一定要寻找这种确切的“ng:include”解决方案或模式,而是寻找可以减少模板中重复的东西。