Nativescript 连接文本使用 Label

Nativescript concatenate text use Label

我想在标签中合并字符串。我想要的结果是:3000 美元,数据库中的价格编号 3000。所以我使用代码:

<Label row="2" col="1" text="USD {{ price }}" />

但不能像这样工作和显示:

USD {{ price }}

我可以直接连接文本标签中的字符串吗?或关于此的任何线索。 还是谢谢

我觉得应该是这样的:

<Label text="{{ 'USD' + price }}" />

Nativescript Angular格式如下:

 <Label [text]="'Amount: ' + item.Gross"></Label>

或使用竖线表示货币:

<Label [text]="item.Gross | currency:'USD':true" ></Label>