本文整理汇总了TypeScript中mobx.IObservableValue.set方法的典型用法代码示例。如果您正苦于以下问题:TypeScript IObservableValue.set方法的具体用法?TypeScript IObservableValue.set怎么用?TypeScript IObservableValue.set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mobx.IObservableValue
的用法示例。
在下文中一共展示了IObservableValue.set方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: format_date
this.date.observe(action((chg: IValueDidChange<Date>) => {
const f = format_date(chg.newValue);
this.formatDate.set(f);
// chg.newValue.setHours(0);
// chg.newValue.setMinutes(0);
// chg.newValue.setSeconds(0);
// chg.newValue.setMilliseconds(0);
// console.log('observe fix', chg.newValue);
}));
示例2: is
public set is(v: boolean) {
this.value.set(v);
// console.log(`SET:${this.objectId()}:`, this.value);
this.resetChildren();
}
示例3: fill
@action
public fill(js: DateValueObj): void {
this.formatDate.set(js.formatDate);
this.errText = js.errText;
}
示例4: action
action(() => this.formatDate.set(format_date(v)))();
示例5: Date
this.formatDate.observe(action((chg: IValueDidChange<string>) => {
this.date.set(new Date(chg.newValue));
}));
示例6: fill
public fill(js: any): void {
this._value.set(js);
}