mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +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) {
|
for (const method of ds.methods) {
|
||||||
if (typeof method.content !== 'function') return;
|
if (typeof method.content !== 'function') return;
|
||||||
if (method.timing === 'beforeInit') {
|
if (method.timing === 'beforeInit') {
|
||||||
method.content({ params: {}, dataSource: ds, app: this.app });
|
await method.content({ params: {}, dataSource: ds, app: this.app });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await ds.init();
|
await ds.init();
|
||||||
|
|
||||||
ds.methods.forEach((method) => {
|
for (const method of ds.methods) {
|
||||||
if (typeof method.content !== 'function') return;
|
if (typeof method.content !== 'function') return;
|
||||||
if (method.timing === 'afterInit') {
|
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) {
|
public get(id: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user