本文介绍了Angular Dart教程第5部分-' self.injector $ Injector'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在《英雄之旅》教程的第5节中, main.dart
包含以下行:
In the Tour of Heroes tutorial, Section 5, main.dart
contains the following line:
这是错字吗?这在VSCode中给了我警告.
Is this a typo? It's giving me a warning in VSCode.
推荐答案
我遇到了同样的问题,因为它没有错误,我只是在 analysis_options.yaml 上添加了以下内容,以忽略错误.
I was having the same problem, as it complete with no errors, I just added the following on analysis_options.yaml to ignore the error.
analyzer:
errors:
undefined_getter: ignore
这篇关于Angular Dart教程第5部分-' self.injector $ Injector'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!