所以我在HTML中有这个
<h2>{{getCryptoName()}} price in {{getCurrencyName()}} is:</h2>
<ion-list>
<div>
{{getPrice()}}
</div>
</ion-list>
函数应该返回一个字符串,这样做是因为我可以在控制台上看到它,但是它们不会显示在HTML上
功能:
getCryptoName(){
this.nombresCrypto[this.Crypto];
}
getCurrencyName(){
this.nombresCrypto[this.Crypto];
}
getPrice(){
this.monedas[this.Crypto.toUpperCase()][this.Currency.toUpperCase()];
}
您知道为什么它不显示在HTML上吗?
答案 0 :(得分:0)
看起来您在函数中缺少return语句。