我是新手。我使用IDEA模板创建一个 Angular 应用程序,并插入示例中的代码:
<p *ngIf="true">
Expression is true and ngIf is true.
This paragraph is in the DOM.
</p>
发生错误:
怎么修?
最佳答案
您需要在@Component()
批注中列出在模板中使用的指令
import 'package:angular/angular.dart'
...
@Component(
selector: 'foo-bar',
templateUrl: 'foo_bar.html',
directives: [coreDirectives /* or NgIf */],
)
关于dart - Dart :如何解决这种情况?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53352937/