Aurelia是否可以使用带有自定义属性的vanilla js setAttribute()
?当我检查dom时,对自定义元素进行了更改,但无论我尝试什么,它似乎都不会触发我的模型或视图中的任何内容。是否有“最佳实践”方法?
home.ts
export class Home{
public onButtonClicked():void{
document.getElementById('test123').setAttribute('color', 'green');
}
}
home.html的
<template>
<require from="../../elements/now-loading-circle/now-loading-circle"></require>
<button click.delegate="onButtonClicked()">Click</button>
<now-loading-circle id="test123" color="red"></now-loading-circle>
</template>
现在加载-circle.ts
import {bindable, autoinject} from 'aurelia-framework';
@autoinject
export class NowLoadingCircle{
@bindable color:string;
public colorChanged(newValue):void{
alert(newValue);
}
}
现在加载-circle.html
<template>
<svg viewBox="0 0 120 120">
<circle repeat.for="circ of coords" cx="${circ.x}" cy="${circ.y}" r="${smallCircleRadius}" class="circ-${$index + 1}"></circle>
</svg>
</template>
答案 0 :(得分:0)
最简单的方法是使用数据绑定。使用color.bind
代替设置属性。如果你明确设置属性值,那么在我看来你并没有充分利用Aurelia。
这是你可以做的。
export class Home{
color: string; // have a member in Home.
public onButtonClicked():void{
this.color = 'green';
}
}
然后在数据绑定中使用color
:
<template>
<require from="../../elements/now-loading-circle/now-loading-circle"></require>
<button click.delegate="onButtonClicked()">Click</button>
<now-loading-circle id="test123" color.bind="color"></now-loading-circle>
</template>
希望这有帮助。
答案 1 :(得分:0)
不,Aurelia目前似乎不支持绑定到自定义属性。