あるフィールドのクライアント側の変更が別の入力に入力されるように、いくつかのモデル変数をテキストエリア入力に埋め込もうとしています。私は次のことを試しました(そして少しグーグルで検索しました)が、うまくいきません........
<textarea ng-model="event.message" required ngMaxlength="{255}" ngMinlength="{10}" ng-init="event.message='Hi, {{event.name}} today at {{event.time}}. Reply with in to join or out if you cant make it. Thanks.'" class="form-control">
Hi, {{event.name}} today at {{event.time}}. Reply with in to join or out if you cant make it. Thanks.
</textarea>
この例では、event.name は別の入力にバインドされていますが、変更してもテキスト領域に表示されません。
これを機能させる方法はありますか?
どうもありがとう