bundle.load 在支付宝小游戏上回调没有反应

web,原生,微信等平台都是好的
但是在支付宝小游戏上,assetManager.loadBundle多条均加载成功后,里面loadbundle会没有任何回馈
也没有报错

Object.keys(Map).forEach(async (key) => {

  console.log("Object.keys", key);

  let jsonData = await (new Promise((reovle: (value: AssetManager.Bundle) => void, reject) => {

    assetManager.loadBundle(bundlename, (err, bundle) => {

      console.log("_loadBundle~", bundle);

      if (err) {

        reject(err);

      } else {

        reovle(bundle);

      }

    })

  }).then((bundle) => {

    console.log("loadBundle ", key, type, bundle);

    bundle.load(key, type, (error: Error | null, resource: any) => {

      console.log("bundleName", realUrl, type, resource);

      if (error) {

        reject(error);

      } else {

        reovle(resource);

      }

    });

  })) as JsonAsset;

}

是不是放在小游戏分包了,我之前放在小游戏分包也是这样的情况,丢远程库或者本地就能正常加载

是配置主包为远程包了,这样是不是也不行

取消了设置主包为远程包,和将相关配置文件放置在远程端,或者放在本地,都尝试过了,还是会断加载,而且将需要load的内容放在远程端会load一个就停住,本体能load8个(总体有20多个),也是无报错…

后面可有找到解决方案?