Skip to content
setAsyncState(context, newState)
setState => promise

参数

(*)
:
this
(Object)
:
新的状态

返回值

(*)
:

示例

this.setState({ a: 1 }, () => {
  console.log('do something here');
});
// 等价于
await setAsyncState(this, { a: 1 });
console.log('do something here');

基于 MIT 许可发布