【发布时间】:2020-10-12 13:44:54
【问题描述】:
以下是用于上述问题的示例代码格式。
export interface IMarketVariables {
MarketDescription: string;
}
在 marketcomponent.ts 文件中,我将值分配为:
marketDescription: IMarketVariables = { MarketDescription: '' }
this.marketDescription = 'Market1market2
market3market4'
在marketcomponent.html中:
<span title="{{this.marketDescription}}">MarketName</span> -- break is not working
<span title="Market1market2
market3market4">MarketName</span> -- Working fine with break
这里的中断标签 没有被应用插值
所以请你帮忙找出不使用插值的中断标签的原因。
【问题讨论】:
标签: angular