我在我的应用程序中创建了一项功能,其中可以复制现有发票的内容以创建新的发票。所有其他字段都被复制。但是“给客户的说明”字段并没有以某种方式显示。我使用文本角度来添加“给客户的注释”。
<div layout="row" flex>
<div flex-xl="" ng-if="documentEntity.noteToCustomer"
ng-click="noteToCustomer($event,documentEntity.noteToCustomer)"
style="border: 1px solid rgba(0, 0, 0, 0.12); background-color: #fdf7f7; padding: 15px; border-width: 2 0 1px; line-height: 26px; width: 100%; box-sizing: border-box; float: left;"
class="flex-xl" ><span ng-bind-html="documentEntity.noteToCustomer"></span></div>
</div>
这里可能是什么问题?