ここに単純なものが欠けていると思いますが、ここに私の問題があります:
<h4 ng-bind="example.heading">
<small ng-bind="example.subheading"></small>
</h4>
機能しません -ng-bind
タグ内のコンテンツを置き換える場合、{{}}
代わりに構文を使用する必要がありますか? そのようです、
<h4>{{example.heading}}<small ng-bind="example.subheading"></small></h4>
ブラケットが短時間点滅しないというアイデアが気に入ったので、 を選択しng-bind
ました。これを回避する別の方法はありますか?