@observable
いずれかの値が変更されたときに、変数またはプロパティが対応する HTML と同期できることを理解しています。
私が得られないのは、一般的な@observable
関数の目的/重要性とアドリビタムの 例です:
@observable bool show() {
if (sillyword != '' && adjective != '' &&
animal != '' && bodypart != '' &&
verb != '' && adverb != '') {
return true;
} else {
return false;
}
}
および対応する HTML:
<template instantiate="if show()">
<p>Dear Ms. {{sillyword}},</p>
<p>Little {{adjective}} Billy missed school
because he was sick with wild-{{animal}} flu.
His {{bodypart}} swelled up and fell off.
He can no longer {{verb}}.</p>
<p>Most {{adverb}} yours, Billy's mother</p>
</template>
@observable
また、機能はどのような場面で役立つのでしょうか。