私は角度2の質問があります。 ですので、ローカルのjsonから{data}}タグを表示してデータを表示するためにngForを使用することができます。ngForを使用して複数のコンポーネントセレクタタグを表示できますか?
しかし、jsonに格納されているコンポーネントセレクタタグをレンダリングしてng内に表示するかどうかは不思議でした。 (問題に関する説明のコメントを参照してください)
import { Component, OnInit } from '@angular/core';
import * as jQuery from 'jquery';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.css']
})
export class DashboardComponent implements OnInit {
widgets;
constructor() { }
ngOnInit() {
this.widgets = [
{
"widgetcode": "<app-analytics-widget></app-club-chooser>" //Existing component selector tag within the angular cli system
},
{
"widgetcode": "<app-club-chooser></app-club-chooser>" //Existing component selector tag within the angular cli system
},
{
"widgetcode": "<app-account-widget></app-account-widget>" //Existing component selector tag within the angular cli system
}
]
}
}
私component.htmlファイル:
<div class="DahsboardWrapper">
<!-- DashBoard Ges here -->
<!-- widget elements go here -->
<div class="DashoardHeaderClass" id="dashboard">
Dashboard Loaded
<div class="WidgetAreaWrapper">
<div class="widgets" *ngFor="let widget of widgets">
<!-- {{widget.widgetcode}} Not working atm..-->
<!-- this is displayng just plain text -->
</div>
<!-- This is working -->
<app-analytics-widget></app-analytics-widget>
<app-club-chooser></app-club-chooser>
<app-account-widget></app-account-widget>
</div>
</div>
多分theresの任意の提案例えば、 私はこのJSONに私のファイルにcomponent.tsを持っていますこれを行う良い方法は?
ご協力ありがとうございます。 ngSwitchは魅力的な作品です。未来のheresでこれを使用することを望む誰にとっても、それについての良いツタロウがあります。 https://codecraft.tv/courses/angular/built-in-directives/ngif-and-ngswitch/ – AviT