我正在学习Aurelia如何工作,我正在尝试使用简单的自定义属性。它所要做的就是根据某些值的变化来改变div文本的颜色。
我有一个div:
high.bind="changeColor"
在我的属性中我有:
import {inject, customAttribute} from 'aurelia-framework';
@customAttribute('high')
@inject(Element)
export class High {
constructor(element) {
this.element = element;
}
valueChanged(newValue){
console.log(newValue);
if (newValue) {
this.element.classList.remove('highlight-yellow');
} else {
this.element.classList.add('highlight-blue');
}
}
在我的视图模型中,我有:
import {high} from './highlightattribute'
export class Welcome{
heading = 'Welcome to the Aurelia Navigation App!';
firstName = 'John';
lastName = 'Doe';
get fullName(){
return `${this.firstName} ${this.lastName}`;
}
get changeColor(){
if (this.firstName == 'John'){
return false;
}
return true;
}
welcome(){
alert(`Welcome, ${this.fullName}!`);
}
}
当我更改名字时,我没有看到在高自定义属性类中触发valueChanged事件。
答案 0 :(得分:8)
您似乎将高代码导入到viewmodel而不是视图中。在ViewModel中删除此行:
import {high} from './highlightattribute'
然后将此行添加到您的视图中:
<require from="./highlightattribute"></require>
接下来,在highlightattribute.js
文件中删除highlight-yellow
并添加highlight-blue
,因此您可能希望添加和删除相同的类。我也注意到你发布的highlightattribute.js
文件中有一个缺少的括号,但在复制代码时可能只是错过了。
请告诉我这是否有助于解决问题。我已将您的代码示例推送到此处:https://github.com/AshleyGrant/skeleton-navigation/tree/so-answer-20150416-01/src