我正在使用<-- 400 Bad Request https://www.myapi.ir/aaa
Content-Length: 63
Content-Type: application/json; charset=utf-8
Server: Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
Date: Sat, 07 Dec 2019 15:10:09 GMT
{"message":"'Amount' must be greater than or equal to '1000'."}
<-- END HTTP (63-byte body)
库,该库使我能够在中心获得一个圆和一个百分比值。
我了解进度值是静态的,并且只有在单击按钮时才会更改。
如果您点击圆圈中心的25%按钮,则25%和相同的按钮将出现在其中。
当我单击按钮时,只需更改以下内容:NgCircleProgressModule
,但是我不知道如何创建函数,以便[percent]获得与按钮关联的值
有人知道我该怎么做吗?
HTML
[percent] = "25"
答案 0 :(得分:1)
使用(click)
事件尝试这样做:
<button (click)="progress = 25">25%</button>
或
.html
<button (click)="changeProgress(25)">25%</button>
.ts
changeProgress(value) {
this.progress = value
}