簡體   English   中英

* ng對於不起作用並且控制台中沒有錯誤

[英]*ngFor not working and no error in console

我經歷了“ ngFor無法正常工作”的大多數問題。 以下是詳細信息。

app.modules.ts

import { NgModule } from '@angular/core';    
import { BrowserModule } from '@angular/platform-browser';    
import { TweetComponent } from './tweet.component';    
import { AppComponent } from './app.component';

@NgModule({    
    imports: [BrowserModule],
    declarations: [AppComponent, TweetComponent],
    bootstrap: [AppComponent]
    })

export class AppModule { }

app.components.ts

import { Component } from '@angular/core';
import { CommonModule } from "@angular/common";

@Component({
  selector: 'my-app',
  template: `<h1>List of tweets</h1>
            <tweets><tweets>`,
 })

export class AppComponent  { name = 'Angular'; }

tweet.component.ts

import { Component } from "@angular/core"
@Component({
   selector: 'tweets',
   template: `<ul>
                <li *ngFor="let item of myList">
                     <span> {{ item}}</span>
                  </li>  
              </ul> `
})

export class TweetComponent {
        myList: ['.net', 'C#', 'web services'];
}

輸出:

輸出量

元素:

元素

並且控制台中有錯誤。

應該是

myList = ['.net', 'C#', 'web services'];

如果您使用:它將嘗試聲明字段類型。

例:

myList: Array<string> = ['.net', 'C#', 'web services'];

有兩個問題,

數組myList中的值應使用=分配

myList= ['.net', 'C#', 'web services'];

而且您在模板上缺少標簽

@Component({
  selector: 'my-app',
  template: `<h1>List of tweets</h1>
            <tweets></tweets>`,
 })

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM