単一の属性を取るコンポーネントがあります。コンポーネントのフィールドに、この属性から派生した値を入力したいと考えています。コンストラクター内のコードが実行されたときに、属性とのバインディングが行われていないという問題が発生しています。では、派生フィールドの値を設定するにはどうすればよいでしょうか。
ここにいくつかのコードがあります:
import 'package:angular/angular.dart';
@NgComponent(
selector: 'tokens',
templateUrl: './component.html',
cssUrl: './component.css',
publishAs: 'ctrl',
map: const {
'text' : '@text'
}
)
class TokensComponent {
String text;
// Derived field.
List<Token> tokens = new List<Token>();
TokensComponent() {
print('inside constructor, text = $text'); // $text is null.
}
}
class Token {
String char;
bool important;
Token(this.char, this.important);
}