在Angular 13中,如果使用Ng For循环时遇到问题,可能是因为您未正确导入“CommonModule”。在您的Angular模块中添加下面的导入声明即可解决此问题:
import { CommonModule } from '@angular/common';
@NgModule({
imports: [ CommonModule ]
})
export class YourModule { }
确保您的模块中正确地导入并使用了CommonModule。这样,Ng For循环就应该可以正常工作了。