mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(data-source): 执行时机函数需要await
This commit is contained in:
parent
12230c2f4e
commit
5caae4e953
@ -112,18 +112,18 @@ class DataSourceManager extends EventEmitter {
|
||||
for (const method of ds.methods) {
|
||||
if (typeof method.content !== 'function') return;
|
||||
if (method.timing === 'beforeInit') {
|
||||
method.content({ params: {}, dataSource: ds, app: this.app });
|
||||
await method.content({ params: {}, dataSource: ds, app: this.app });
|
||||
}
|
||||
}
|
||||
|
||||
await ds.init();
|
||||
|
||||
ds.methods.forEach((method) => {
|
||||
for (const method of ds.methods) {
|
||||
if (typeof method.content !== 'function') return;
|
||||
if (method.timing === 'afterInit') {
|
||||
method.content({ params: {}, dataSource: ds, app: this.app });
|
||||
await method.content({ params: {}, dataSource: ds, app: this.app });
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public get(id: string) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user