从HTML调用打字稿文件中的函数不会显示返回变量

时间:2019-01-03 01:30:30

标签: html angular typescript ionic-framework ionic3

所以我在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()];
}

This is the output i get

您知道为什么它不显示在HTML上吗?

1 个答案:

答案 0 :(得分:0)

看起来您在函数中缺少return语句。