সূচক সহ কাস্টম স্ট্রাকচারাল দিকনির্দেশনা ব্যবহার:
কৌণিক ডকুমেন্টেশন অনুযায়ী:
createEmbeddedView
একটি এম্বেড করা ভিউ ইনস্ট্যান্ট করে এবং এই ধারকটিতে এটি সন্নিবেশ করায়।
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.
যখন কৌণিক ক্রেডিট এম্বেডভিউ কল করে টেমপ্লেট তৈরি করে এটি অভ্যন্তরে ব্যবহৃত প্রসঙ্গটিও পাস করতে পারে ng-template
।
প্রসঙ্গ optionচ্ছিক প্যারামিটার ব্যবহার করে, আপনি এটি উপাদানটিতে ব্যবহার করতে পারেন, টেমপ্লেটের মধ্যে যেমন আপনি * এনজিফোয়ার সাথে করতে চান তেমন এটি বের করে নিতে।
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));
}
}