第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Twitter 按鈕圖標(biāo)旁邊顯示喜歡的數(shù)量

在 Twitter 按鈕圖標(biāo)旁邊顯示喜歡的數(shù)量

瀟湘沐 2023-08-10 15:57:40
使用 Angular 框架。我在瀏覽器中顯示了一個(gè)模擬 Twitter 按鈕的按鈕。現(xiàn)在我的點(diǎn)贊數(shù)在點(diǎn)擊時(shí)增加到 1,而在未點(diǎn)擊時(shí)又回到 0。然而,喜歡的數(shù)量正在控制臺(tái)中顯示。我想將其顯示在按鈕本身旁邊,這是否是將數(shù)據(jù)傳遞給事件問(wèn)題或 ngContent?前兩個(gè)片段是 app.component.html 和 app.component.ts,后兩個(gè)片段是 like.component.html 和 like.component.ts。<like [isActive]="tweet.isLiked" [likesAmount] = "tweet.likesCount"(change)="tweet.onFavoriteChange()"></like>import { Component } from '@angular/core';@Component({  selector: 'app-root',  templateUrl: './app.component.html',  styleUrls: ['./app.component.css']})export class AppComponent {  title = 'twitterButton';    //Tweet object  tweet = {    body: 'Here is the body of a tweet...',    isLiked: false,    likesCount: 0,    onFavoriteChange(){}  }}<span class="glyphicon" [class.glyphicon-heart-empty] = "!isActive" [class.glyphicon-heart]="isActive" (click)="changeFavorite()"></span>import { Component, Input, OnInit, Output, EventEmitter } from '@angular/core';@Component({  selector: 'like',  templateUrl: './like.component.html',  styleUrls: ['./like.component.css']})export class LikeComponent {  @Input() likesAmount: number; //Total number of likes  @Input() isActive: boolean; //User has liked tweet or not  @Output() change = new EventEmitter();    changeFavorite(){    this.isActive = !this.isActive;    this.change.emit();    if(this.isActive){          this.likesAmount++;          console.log(this.likesAmount);        }else{          this.likesAmount--;          console.log(this.likesAmount);        }     }}
查看完整描述

1 回答

?
慕森卡

TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超8個(gè)贊

您可以使用{{}}-brackets 顯示喜歡的數(shù)量,它應(yīng)該會(huì)自動(dòng)更新。這稱為插值,是 Angular 的核心功能之一。

{{likesAmount}}
<span?class="glyphicon"?
????[class.glyphicon-heart-empty]="!isActive"?
????[class.glyphicon-heart]="isActive"
????(click)="changeFavorite()"></span>


查看完整回答
反對(duì) 回復(fù) 2023-08-10
  • 1 回答
  • 0 關(guān)注
  • 152 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)