सूचकांक के साथ कस्टम संरचनात्मक निर्देश का उपयोग करना:
कोणीय दस्तावेज के अनुसार:
createEmbeddedView
एक एम्बेडेड दृश्य Instantiates और इस कंटेनर में सम्मिलित करता है।
abstract createEmbeddedView(templateRef: TemplateRef, context?: C, index?: number): EmbeddedViewRef
।
Param Type Description
templateRef TemplateRef the HTML template that defines the view.
context C optional. Default is undefined.
index number the 0-based index at which to insert the new view into this container. If not specified, appends the new view as the last entry.
जब angular createEmbeddedView को कॉल करके टेम्प्लेट बनाता है, तो यह उस संदर्भ को भी पास कर सकता है जिसका उपयोग अंदर किया जाएगा ng-template
।
संदर्भ वैकल्पिक पैरामीटर का उपयोग करते हुए, आप इसे घटक में उपयोग कर सकते हैं, इसे टेम्पलेट के भीतर निकाल सकते हैं, जैसा कि आप * ngFor के साथ करेंगे।
app.component.html:
<p *for="number; let i=index; let c=length; let f=first; let l=last; let e=even; let o=odd">
item : {{i}} / {{c}}
<b>
{{f ? "First,": ""}}
{{l? "Last,": ""}}
{{e? "Even." : ""}}
{{o? "Odd." : ""}}
</b>
</p>
for.directive.ts:
import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
class Context {
constructor(public index: number, public length: number) { }
get even(): boolean { return this.index % 2 === 0; }
get odd(): boolean { return this.index % 2 === 1; }
get first(): boolean { return this.index === 0; }
get last(): boolean { return this.index === this.length - 1; }
}
@Directive({
selector: '[for]'
})
export class ForDirective {
constructor(private templateRef: TemplateRef<any>, private viewContainer: ViewContainerRef) { }
@Input('for') set loop(num: number) {
for (var i = 0; i < num; i++)
this.viewContainer.createEmbeddedView(this.templateRef, new Context(i, num));
}
}