我很有经验,但对Aurelia来说是新手,并且无法弄清楚如何从控制台调用特定功能。
使用此来源:
<code>
import {} from 'css/style.css';
import {inject} from 'aurelia-framework';
import {DOM} from 'aurelia-pal';
export class App {
constructor() {
this.message = 'Test Application';
this.todos = ['a','b','c','d'];
this.DOM = DOM;
}
getFish() {
this.DOM.getElementById("#theMessage").style.color="green";
}
}
</code>
我想从控制台调用getFish。有人可能认为App.getFish()会这样做,但没有那么多。
如何在Aurelia的调试控制台中调用类函数?