我想在线性渐变停止偏移中使用bind angular2值,但它给出了我的错误。有人能告诉我如何在线性渐变的停止偏移中绑定angular2值,如下所示?
test.component.ts
import {Component, EventEmitter, ViewEncapsulation, Input, OnInit} from '@angular/core';
@Component({
selector: 'test-comp',
templateUrl: 'test-component.html',
encapsulation: ViewEncapsulation.None
})
export class TestComponent implements OnInit {
@Input() name: string;
@Input() flexScore: number;
protected goodScore: number;
protected dangerScore: number;
protected isComplete: boolean = false;
ngOnInit() {
this.goodScore = this.flexScore;
this.dangerScore = 100 - this.goodScore;
console.log(this.goodScore + ' ' + this.dangerScore);
this.isComplete = true;
}
}
测试component.html
<div class="individual-athlete-risk">
<span id="name">{{name}}</span>
<span id="score">{{flexScore}}</span>
</div>
<svg width="200" height="10" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="testGradient">
<stop attr.offset="{{goodScore}}%" stop-color="blue"/>
<stop attr.offset="{{dangerScore}}%" stop-color="red"/>
</linearGradient>
</defs>
<rect fill="url(/test#testGradient)" x="0" y="0" width="200" height="9"/>
</svg>
它给了我错误。我想添加带有动态值的渐变线。请帮忙。
@Gaunter我已经更新/编辑了你所说的代码,现在删除了错误,但是根据OnInit()函数中确定的值,bar / gradient似乎仍然是常量。我已经检查了OnInit中的goodScore和dangerScore值它们是正确的还是不统一的。有什么想法吗?
答案 0 :(得分:4)
我想这就是你想要的:
<stop [attr.offset]="goodScore" stop-color="blue"/>
<stop [attr.offset]="dangerScore" stop-color="red"/>
您需要[attrname]="fieldName"
或attrname="{{fieldName}}"
才能获得Angular2绑定
SVG元素没有属性,因此您需要进行属性绑定,因此需要额外的attr.
前缀来绑定SVG元素。