我是打字稿的新手,想将它与淘汰赛的优点结合起来。我有一个计算出的 observable,目前可以工作,但想知道这是正确的方法还是有更好的方法。
我正在使用来自 nu-get 的淘汰赛定义文件。其中有 4 个 KnockoutComputed(x) 定义。
- 淘汰赛计算
- 淘汰赛计算定义
- 淘汰赛ComputedFunctions
- 淘汰赛ComputedStatic
我喜欢声明 observable 的 {} 方法,并希望保留它。长话短说,这是声明 observables 的正确方法还是有另一种方法(可能在函数中使用 intlisense)
我正在使用第一个这样的:
class PersonViewModel {
public firstname: KnockoutObservable<string>;
public lastname: KnockoutObservable<string>;
public fullname: KnockoutComputed<string>;
constructor() {
this.firstname = ko.observable('');
this.lastname = ko.observable('');
this.fullname = ko.computed({
owner: this,
read: function () {
return this.firstname() + " " + this.lastname();
}
});
}
}
带有以下html片段:
<h2>Type Script and Knockout.</h2>
<input data-bind="value: firstname" />
<input data-bind="value: lastname" />
<div data-bind="text: fullname"></div>