We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
引擎设计器作为qiankun的子应用,当设计器组件卸载后,host-view 同样被卸载;当再次加载设计器子应用,react-simulator-renders host.componentsConsumer.consume 无法二次消费,appHelper中 utils 无法正常加载到模拟器中,查看源码得知: ResourceConsumer consume 函数中有 if (this._consuming) { return; } 导致二次消费被拦截,无法多次消费。
期望 consume 可以多次消费。
The text was updated successfully, but these errors were encountered:
考虑是否可以去掉此拦截
Sorry, something went wrong.
低代码引擎by design是不能作为spa的一部分的
1 可否解释下代码中 if (this._consuming) {return;} 的意义呢? 2 如果设计器需要作为组件使用,该如何处理呢?
No branches or pull requests
Describe the bug (required) / 详细描述 bug(必填)
引擎设计器作为qiankun的子应用,当设计器组件卸载后,host-view 同样被卸载;当再次加载设计器子应用,react-simulator-renders host.componentsConsumer.consume 无法二次消费,appHelper中 utils 无法正常加载到模拟器中,查看源码得知:
ResourceConsumer consume 函数中有
if (this._consuming) {
return;
}
导致二次消费被拦截,无法多次消费。
期望 consume 可以多次消费。
The text was updated successfully, but these errors were encountered: