WebStorm 中的 Dart Angular2:"Attribute [(ngModel)] is not allowed her ..."

Dart Angular2 in WebStorm: "Attribute [(ngModel)] is not allowed her ..."

你好,

尝试在 WebStorm 中使用 Dart 遵循 Angular2 'Heros Editor' 教程:

import 'package:angular2/core.dart';

@Component( selector: 'my-app',
    styleUrls: const ['app_component.css'],
    template: '<input [(ngModel)]="hero" placeholder="name">')

class AppComponent{ String hero = "Seth Ladd"; }

WebStorm IntelliSense 将 [(ngModel)] 标记为 "Attribute [(ngModel)] is not allowed here..."。

我是否缺少让 WebStorm 在 Dart 中识别 Angular2 的导入或设置?

感谢您的帮助。

WebStorm 目前不支持 AngularDart,您可能会在注入的 HTML 中收到一些错误警告。此外,您可能会错过 Angular 特定的代码完成、突出显示、代码导航等。 观看 https://youtrack.jetbrains.com/issue/WEB-11590.