无法在 JavaScript/Angular 中使用字符串 Polation 解析函数

我正在计算用户在复选框上选中但无法使用 JavaScript/Angular 中的字符串 Polation 解析函数的项目数。我可以在控制台上得到输出,但不知道如何在屏幕上得到它。谁能帮我解决这个小问题。如果有任何有效/更好的方法,请告诉我。有点新的Angular / JS


<span  style="white-space: nowrap; padding-right:130px;"> {{ this['groupType'] | pluralize}} Selected</span>

下面是我的 TS 文件中的一段代码。这是我从中得到计数的地方。


 numberOfStudentsSelected($event){

    if($event){

      if($event.checked === true){

        this.count ++

      }

      else if($event.checked === false){

        this.count --;

      }

      console.log(this.count);

    }

这就是我目前在屏幕上的内容。

http://img2.mukewang.com/628ef4f30001fa2507390098.jpg

梵蒂冈之花
浏览 91回答 1
1回答

MYYA

&nbsp;numberOfStudentsSelected($event){&nbsp; &nbsp; if($event){&nbsp; &nbsp; &nbsp; if($event.checked === true){&nbsp; &nbsp; &nbsp; &nbsp; return this.count ++&nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; else if($event.checked === false){&nbsp; &nbsp; &nbsp; &nbsp; return this.count --;&nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; console.log(this.count);&nbsp; &nbsp; }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript